当前位置:   article > 正文

Python 基于列表实现的通讯录管理系统(有完整源码)_python通讯录管理系统

python通讯录管理系统

目录

通讯录管理系统

PersonInformation类

ContactList类

menu函数

main函数

程序的运行流程

完整代码

运行示例


通讯录管理系统

这是一个基于文本的界面程序,用户可以通过命令行与之交互,它使用了CSV文件来存储和读取联系人信息,这使得数据可以持久化保存。此外,程序还提供了一些基本的输入验证,以确保输入的数据是有效的。

它包含了两个类PersonInformation类用于创建和管理个人信息对象,而ContactList类则用于管理这些对象的集合。

PersonInformation

这个类用于存储一个人的基本信息,包括姓名、性别、年龄、电话和住址。它有一个__str__方法,用于定义当对象被转换为字符串时的表现形式。

  1. class PersonInformation:
  2. def __init__(self, name, gender, age, telephone, address):
  3. self.name = name
  4. self.gender = gender
  5. self.age = age
  6. self.telephone = telephone
  7. self.address = address
  8. def __str__(self):
  9. return f"名字: {self.name}, 性别: {self.gender}, 年龄: {self.age}, 电话: {self.telephone}, 住址: {self.address}"

ContactList

这个类用于管理一个联系人列表。它提供了以下功能:

  • 添加联系人(add_contact
  • 删除联系人(remove_contact
  • 查找联系人(find_contact
  • 修改联系人信息(modify_contact
  • 显示所有联系人(show_contacts
  • 保存联系人到CSV文件(save_contacts
  • 从CSV文件加载联系人(load_contacts
  1. class ContactList:
  2. def __init__(self):
  3. self.arr = []
  4. def add_contact(self, person):
  5. self.arr.append(person)
  6. self.save_contacts()
  7. def is_empty(self):
  8. if not self.arr:
  9. print("当前联系人列表为空!")
  10. def remove_contact(self, name):
  11. person = self.find_contact(name)
  12. if person:
  13. self.arr.remove(person)
  14. self.save_contacts()
  15. print("删除成功!")
  16. self.is_empty()
  17. else:
  18. print("此联系人不存在!")
  19. def show_contacts(self):
  20. print('通讯录:')
  21. for person in self.arr:
  22. print(person)
  23. self.is_empty()
  24. def find_contact(self, name):
  25. for person in self.arr:
  26. if person.name == name:
  27. return person
  28. return None
  29. def modify_contact(self, old_name, new_info):
  30. person = self.find_contact(old_name)
  31. if person:
  32. person.name = new_info.name
  33. person.gender = new_info.gender
  34. person.age = new_info.age
  35. person.telephone = new_info.telephone
  36. person.address = new_info.address
  37. self.save_contacts()
  38. print("修改成功!\n ", person)
  39. else:
  40. print("此联系人不存在!")
  41. def save_contacts(self, filename="contacts.csv"):
  42. with open(filename, 'w', newline='', encoding='utf-8') as f:
  43. writer = csv.writer(f)
  44. writer.writerow(['姓名', '性别', '年龄', '电话', '住址'])
  45. for person in self.arr:
  46. writer.writerow([person.name, person.gender, person.age, person.telephone, person.address])
  47. def load_contacts(self, filename="contacts.csv"):
  48. if not os.path.isfile(filename):
  49. with open(filename, 'w', newline='', encoding='utf-8') as f:
  50. writer = csv.writer(f)
  51. writer.writerow(['姓名', '性别', '年龄', '电话', '住址'])
  52. with open(filename, 'r', newline='', encoding='utf-8') as f:
  53. reader = csv.reader(f)
  54. next(reader)
  55. for row in reader:
  56. if len(row) == 5:
  57. name, gender, age, telephone, address = row
  58. self.add_contact(PersonInformation(name, gender, age, telephone, address))
  59. else:
  60. print(f"跳过不完整的联系人记录: {row}")

这个函数用于显示程序的菜单选项,让用户可以选择执行不同的操作。

main函数

这是程序的主入口,它首先创建一个ContactList实例,然后进入一个无限循环,不断显示菜单并根据用户的选择调用相应的方法。当用户选择退出时,程序会结束。

程序的运行流程

  1. 程序启动后,首先加载已有的联系人信息。
  2. 显示菜单,等待用户输入选择。
  3. 根据用户的选择执行相应的操作:
    • 添加联系人:输入新的联系人信息并添加到列表中。
    • 删除联系人:输入要删除的联系人姓名,然后从列表中删除。
    • 查找联系人:输入要查找的联系人姓名,并显示其信息。
    • 修改联系人:输入要修改的联系人姓名,然后输入新的信息进行修改。
    • 显示所有联系人:列出当前所有的联系人信息。
    • 退出通讯录:退出程序。

完整代码

  1. import os, csv
  2. class PersonInformation:
  3. def __init__(self, name, gender, age, telephone, address):
  4. self.name = name
  5. self.gender = gender
  6. self.age = age
  7. self.telephone = telephone
  8. self.address = address
  9. def __str__(self):
  10. return f"名字: {self.name}, 性别: {self.gender}, 年龄: {self.age}, 电话: {self.telephone}, 住址: {self.address}"
  11. class ContactList:
  12. def __init__(self):
  13. self.arr = []
  14. def add_contact(self, person):
  15. self.arr.append(person)
  16. self.save_contacts()
  17. def is_empty(self):
  18. if not self.arr:
  19. print("当前联系人列表为空!")
  20. def remove_contact(self, name):
  21. person = self.find_contact(name)
  22. if person:
  23. self.arr.remove(person)
  24. self.save_contacts()
  25. print("删除成功!")
  26. self.is_empty()
  27. else:
  28. print("此联系人不存在!")
  29. def show_contacts(self):
  30. print('通讯录:')
  31. for person in self.arr:
  32. print(person)
  33. self.is_empty()
  34. def find_contact(self, name):
  35. for person in self.arr:
  36. if person.name == name:
  37. return person
  38. return None
  39. def modify_contact(self, old_name, new_info):
  40. person = self.find_contact(old_name)
  41. if person:
  42. person.name = new_info.name
  43. person.gender = new_info.gender
  44. person.age = new_info.age
  45. person.telephone = new_info.telephone
  46. person.address = new_info.address
  47. self.save_contacts()
  48. print("修改成功!\n ", person)
  49. else:
  50. print("此联系人不存在!")
  51. def save_contacts(self, filename="contacts.csv"):
  52. with open(filename, 'w', newline='', encoding='utf-8') as f:
  53. writer = csv.writer(f)
  54. writer.writerow(['姓名', '性别', '年龄', '电话', '住址'])
  55. for person in self.arr:
  56. writer.writerow([person.name, person.gender, person.age, person.telephone, person.address])
  57. def load_contacts(self, filename="contacts.csv"):
  58. if not os.path.isfile(filename):
  59. with open(filename, 'w', newline='', encoding='utf-8') as f:
  60. writer = csv.writer(f)
  61. writer.writerow(['姓名', '性别', '年龄', '电话', '住址'])
  62. with open(filename, 'r', newline='', encoding='utf-8') as f:
  63. reader = csv.reader(f)
  64. next(reader)
  65. for row in reader:
  66. if len(row) == 5:
  67. name, gender, age, telephone, address = row
  68. self.add_contact(PersonInformation(name, gender, age, telephone, address))
  69. else:
  70. print(f"跳过不完整的联系人记录: {row}")
  71. def menu(contact_list):
  72. print()
  73. print("*********************************")
  74. print("** 1、增加联系人 2、删除联系人 **")
  75. print("** 3、查找联系人 4、修改联系人 **")
  76. print("** 5、展示联系人 0、退出通讯录 **")
  77. print("*********************************")
  78. def main():
  79. contact_list = ContactList()
  80. contact_list.load_contacts()
  81. while True:
  82. menu(contact_list)
  83. name, gender, age, telephone, address = [""]*5
  84. input_choice = input("请输入您的选择:")
  85. if input_choice == '1':
  86. while len(name)<2:
  87. name = input("请输入您要添加的联系人的姓名:\n")
  88. if contact_list.find_contact(name):
  89. print(f'此姓名[{name}]已存在!')
  90. break
  91. while gender not in ('男','女','1','0'):
  92. gender = input("请输入性别(1-男, 0-女):\n")
  93. if gender=='1': gender = '男'
  94. elif gender=='0': gender = '女'
  95. while not age.isnumeric():
  96. age = input("请输入年龄:\n")
  97. while telephone is None or len(telephone)!=11 or not telephone.startswith('1'):
  98. telephone = input("请输入手机号:\n")
  99. while len(address)<6:
  100. address = input("请输入住址(字数不少于6):\n")
  101. contact_list.add_contact(PersonInformation(name, gender, age, telephone, address))
  102. print("联系人添加成功!")
  103. elif input_choice == '2':
  104. name = input("请输入您要删除的联系人的名字:\n")
  105. contact_list.remove_contact(name)
  106. elif input_choice == '3':
  107. name = input("请输入您要查找的联系人的名字:\n")
  108. person = contact_list.find_contact(name)
  109. print(person if person else "此联系人不存在!")
  110. elif input_choice == '4':
  111. old_name = input("请输入您要修改的联系人的名字:\n")
  112. new_info = PersonInformation(*([""]*5))
  113. person = contact_list.find_contact(old_name)
  114. if person:
  115. print('待修改联系人:(直接回车保留原字段)\n ', person)
  116. while len(new_info.name)<2:
  117. new_info.name = input("请输入新的名字:\n")
  118. if new_info.name=="":
  119. new_info.name = person.name
  120. elif contact_list.find_contact(name):
  121. print(f'此姓名[{name}]已存在,退出修改!')
  122. break
  123. while new_info.gender not in ('男','女','1','0'):
  124. new_info.gender = input("请输入性别(1-男, 0-女):\n")
  125. if new_info.gender=='1': new_info.gender = '男'
  126. elif new_info.gender=='0': new_info.gender = '女'
  127. elif new_info.gender=="": new_info.gender = person.gender
  128. while not new_info.age.isnumeric():
  129. new_info.age = input("请输入年龄:\n")
  130. if new_info.age=="": new_info.age = person.age
  131. while len(new_info.telephone)!=11 or not new_info.telephone.startswith('1'):
  132. new_info.telephone = input("请输入新的手机号:\n")
  133. if new_info.telephone=="": new_info.telephone = person.telephone
  134. while len(new_info.address)<6:
  135. new_info.address = input("请输入新的住址(字数不少于6):\n")
  136. if new_info.address=="": new_info.address = person.address
  137. contact_list.modify_contact(old_name, new_info)
  138. elif input_choice == '5':
  139. contact_list.show_contacts()
  140. elif input_choice == '0':
  141. print("成功退出通讯录!")
  142. break
  143. else:
  144. print("输入错误,请重新选择!")
  145. if __name__ == "__main__":
  146. main()

运行示例

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:5
通讯录:
当前联系人列表为空!

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:1
请输入您要添加的联系人的姓名:
Hann
请输入性别(1-男, 0-女):
1
请输入年龄:
51
请输入手机号:
13962600000
请输入住址(字数不少于6):
江苏省昆山市
联系人添加成功!

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:5
通讯录:
名字: Hann, 性别: 男, 年龄: 51, 电话: 13962600000, 住址: 江苏省昆山市

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:1
请输入您要添加的联系人的姓名:
Hann
此姓名[Hann]已存在!

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:1
请输入您要添加的联系人的姓名:
YangCheng
请输入性别(1-男, 0-女):
1
请输入年龄:
22
请输入手机号:
13962611111
请输入住址(字数不少于6):
江苏省昆山市
联系人添加成功!

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:5
通讯录:
名字: Hann, 性别: 男, 年龄: 51, 电话: 13962600000, 住址: 江苏省昆山市
名字: YangCheng, 性别: 男, 年龄: 22, 电话: 13962611111, 住址: 江苏省昆山市

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:4
请输入您要修改的联系人的名字:
Hann
待修改联系人:(直接回车保留原字段)
  名字: Hann, 性别: 男, 年龄: 51, 电话: 13962600000, 住址: 江苏省昆山市
请输入新的名字:
HannYang
请输入性别(1-男, 0-女):

请输入年龄:

请输入新的手机号:

请输入新的住址(字数不少于6):

修改成功!
  名字: HannYang, 性别: 男, 年龄: 51, 电话: 13962600000, 住址: 江苏省昆山市

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:5
通讯录:
名字: HannYang, 性别: 男, 年龄: 51, 电话: 13962600000, 住址: 江苏省昆山市
名字: YangCheng, 性别: 男, 年龄: 22, 电话: 13962611111, 住址: 江苏省昆山市

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:3
请输入您要查找的联系人的名字:
hannyang
此联系人不存在!

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:3
请输入您要查找的联系人的名字:
HannYang
名字: HannYang, 性别: 男, 年龄: 51, 电话: 13962600000, 住址: 江苏省昆山市

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:2
请输入您要删除的联系人的名字:
hann
此联系人不存在!

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:2
请输入您要删除的联系人的名字:
HannYang
删除成功!

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:5
通讯录:
名字: YangCheng, 性别: 男, 年龄: 22, 电话: 13962611111, 住址: 江苏省昆山市

*********************************
** 1、增加联系人 2、删除联系人 **
** 3、查找联系人 4、修改联系人 **
** 5、展示联系人 0、退出通讯录 **
*********************************
请输入您的选择:0
成功退出通讯录!


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/769260
推荐阅读
相关标签
  

闽ICP备14008679号