python实现简单通讯录管理系统
下面是一个简单的通讯录管理系统的Python实现: class Contact: def __init__(self, name, phone): self.name = name self.phone = phone class ContactBook: def __init__(self): self.contacts = [] de
Python编程 2026年01月25日 18
string(15) "通讯录管理"
下面是一个简单的通讯录管理系统的Python实现: class Contact: def __init__(self, name, phone): self.name = name self.phone = phone class ContactBook: def __init__(self): self.contacts = [] de
Python编程 2026年01月25日 18