Hu0116_ 2021-10-27 08:57 采纳率: 70%
浏览 83
已结题

如何用python的dictionary编写一个联系人通讯录程序

##请问如何用python的dictionary写一个联系人通讯录程序,具体要求以及输出示例如下:

img

  • 写回答

2条回答 默认 最新

  • 辉煌仪奇 2021-10-27 09:31
    关注
    
    maillistdic = {}
    while True:
        name = input("Enter the name of the contact ")
        if name not in maillistdic.keys():
            mark = input('The name is new. Do you want to add the contact? y/n ')
            if mark.upper() == 'Y':
                phonenumber = input('Enter the telephone number ')
                maillistdic[name] = phonenumber
                print('The contact has been added ')
        else:
            print('The contact is already in your list')
            print("The telephone number is", maillistdic[name])
        print('The following is your contact list ')
        for k, v in maillistdic.items():
            print(k, v)
        mark=input('Do you want to process another transaction? y/n ')
        if mark.upper()!='Y':
            break
    

    有帮助请采纳,有问题继续交流,你的采纳是对我回答的最大的肯定和动力

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 11月6日
  • 已采纳回答 10月29日
  • 创建了问题 10月27日

悬赏问题

  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?