python实现通讯录代码
生活随笔
收集整理的這篇文章主要介紹了
python实现通讯录代码
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
import time
print("歡迎進入鋁銅訊程序".center(25,"*"))
print("1:查詢聯(lián)系人資料".center(25,"*"))
print("2:插入新的用戶".center(25,"*"))
print("3:刪除已有用戶".center(25,"*"))
print("4:退出鋁銅訊錄程序".center(25,"*"))
dictionary = dict({})
while True:instruct_ = int(input("請輸入相關(guān)指令>:"))if instruct_ == 1:dict_keys = list(dictionary.keys())dict_values = list(dictionary.values())print('已有記錄的用戶:',dict_keys)print('該用戶的darling:',dict_values)elif instruct_ == 2:inkeys = input("請輸入新的用戶:")dict_keys_have = list(dictionary.keys())for i in dict_keys_have:if inkeys == i:print(f"error,寧輸入的用戶在銅訊錄已存在 ——>>{i}:{dictionary[i]}")change_instruct = input("是否修改用戶資料(yes/no):")if change_instruct == 'yes' or change_instruct == 'YES':invalues = input("請輸入用戶的deling:")breakelif change_instruct == 'no' or change_instruct == 'NO':breakelse:invalues = input("請輸入用戶的deling:")dictionary[inkeys] = invalueselif instruct_ == 3:del_keys = input("請輸入要刪除的用戶:")print(f'已刪除{del_keys}:',dictionary.pop(del_keys))elif instruct_ == 4:print('正在退出程序...')time.sleep(1.314)print('退出成功...')breakelse:print('輸入指令錯誤,請重新輸入...')
總結(jié)
以上是生活随笔為你收集整理的python实现通讯录代码的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 从此记录
- 下一篇: 5位数的数字黑洞是多少_每日一题[491