wujiale 发表于 2020-11-22 14:06:42

关于while的问题

q = {}
while True :
    print("""|--- 欢迎进入通讯录程序---|
    |--- 1:查询联系人资料---|
    |--- 2:插入新的联系人---|
    |--- 3:删除已有联系人---|
    |--- 4:退出通讯录程序---|
    |--- 5:查询所有名单    ---|""")
   
    best1 =input("请输入相关的指令代码:")
    best1 = int(best1)
    while best1 != range(1,6):
      best1 = input("输入错误,请重新输入:")

    if best1 == 2:
      best2 =input("请输入联系人姓名:")
      if best2 not in q :
            best3 =input("请输入用户联系电话:")
            q = {best2:best3}
            print(best2,"---->已存入通讯录")


为啥程序一运行就会一直循环"输入错误,请重新输入:"                         求大佬解析啊~   

suchocolate 发表于 2020-11-22 18:53:36

本帖最后由 suchocolate 于 2020-11-22 18:56 编辑

q = {}
while True :
    print("""
    |--- 欢迎进入通讯录程序---|
    |--- 1:查询联系人资料---|
    |--- 2:插入新的联系人---|
    |--- 3:删除已有联系人---|
    |--- 4:退出通讯录程序---|
    |--- 5:查询所有名单    ---|
    """)
   
    best1 =input("请输入相关的指令代码:")
    best1 = int(best1)
    while best1 != range(1,6):
      best1 = int(input("输入错误,请重新输入:"))    #   这里忘记int了

    if best1 == 2:
      best2 =input("请输入联系人姓名:")
      if best2 not in q :
            best3 =input("请输入用户联系电话:")
            q = best3                            # 另外这里要这样写,否则q字典会清空的。
            print(best2,"---->已存入通讯录")

wujiale 发表于 2020-11-23 22:21:18

suchocolate 发表于 2020-11-22 18:53


多谢大哥赐教{:10_323:}
页: [1]
查看完整版本: 关于while的问题