中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

python通訊錄程序代碼怎么寫

小億
212
2023-12-14 02:32:33
欄目: 編程語言

下面是一個簡單的Python通訊錄程序代碼示例:

class Contact:
    def __init__(self, name, phone_number):
        self.name = name
        self.phone_number = phone_number

class AddressBook:
    def __init__(self):
        self.contacts = []

    def add_contact(self, contact):
        self.contacts.append(contact)

    def remove_contact(self, contact):
        self.contacts.remove(contact)

    def search_contact(self, name):
        for contact in self.contacts:
            if contact.name == name:
                return contact
        return None

    def display_contacts(self):
        if len(self.contacts) == 0:
            print("No contacts found.")
        else:
            for contact in self.contacts:
                print(f"Name: {contact.name}, Phone Number: {contact.phone_number}")

def main():
    address_book = AddressBook()

    while True:
        print("1. Add Contact")
        print("2. Remove Contact")
        print("3. Search Contact")
        print("4. Display All Contacts")
        print("5. Quit")

        choice = input("Enter your choice: ")

        if choice == "1":
            name = input("Enter name: ")
            phone_number = input("Enter phone number: ")
            contact = Contact(name, phone_number)
            address_book.add_contact(contact)
            print("Contact added.")
        elif choice == "2":
            name = input("Enter name: ")
            contact = address_book.search_contact(name)
            if contact:
                address_book.remove_contact(contact)
                print("Contact removed.")
            else:
                print("Contact not found.")
        elif choice == "3":
            name = input("Enter name: ")
            contact = address_book.search_contact(name)
            if contact:
                print(f"Name: {contact.name}, Phone Number: {contact.phone_number}")
            else:
                print("Contact not found.")
        elif choice == "4":
            address_book.display_contacts()
        elif choice == "5":
            break
        else:
            print("Invalid choice. Please try again.")

if __name__ == "__main__":
    main()

這個程序通過創建Contact類和AddressBook類來實現通訊錄的功能。Contact類用于表示一個聯系人,包含姓名和電話號碼兩個屬性。AddressBook類用于表示通訊錄,包含一個聯系人列表,以及添加、刪除、搜索和顯示聯系人的方法。

main函數中,通過一個無限循環,根據用戶的選擇執行相應的操作,包括添加聯系人、刪除聯系人、搜索聯系人、顯示所有聯系人以及退出程序。

注意:上述代碼只是一個簡單的示例,實際的通訊錄程序可能需要更多的功能和優化。

0
行唐县| 乌审旗| 汉川市| 泌阳县| 舒城县| 正定县| 纳雍县| 宿州市| 邹城市| 澄迈县| 康保县| 若羌县| 丰城市| 鄂伦春自治旗| 宝兴县| 德江县| 大竹县| 长乐市| 武安市| 连南| 井研县| 博爱县| 黄浦区| 孟连| 凤冈县| 探索| 扬中市| 工布江达县| 商城县| 亚东县| 宣化县| 广丰县| 通江县| 喜德县| 嘉黎县| 专栏| 元朗区| 曲周县| 沧州市| 怀宁县| 晋州市|