2018.1.14

  1. 基礎需求:ui

    • 讓用戶輸入用戶名密碼
    • 認證成功後顯示歡迎信息
    • 輸錯三次後退出程序
# i=0
# profile = {
# 'alex':{'password':'123','count':0},
# 'matthew':{'password':'456','count':0},
# 'egon':{'password':'789','count':0}
# }
# while True:
# i+=1
# name=input('enter your name:')
# if name in profile:
# password=input('enter your password:')
# if password == profile[name]['password']:
# print('welcome')
# break
# else:
# print('密碼錯')
# profile[name]['count']+=1
# if profile[name]['count']>2:
# print('用戶鎖定')
# break
# elif i == 3:
# print('too many times')
# break
# else:
# print('用戶不存在')
# continue

使用while循環實現輸出2-3+4-5+6...+100 的和
b. 使用 while 循環實現輸出 1,2,3,4,5, 7,8,9, 11,12 使用 while 循環實現輸出 1-100 內的全部奇數this

e. 使用 while 循環實現輸出 1-100 內的全部偶數ip

a=0
# b=1
# while True:
# print(b)
# b+=2
# if b == 101:
# break
# while True:
# print(a)
# a+=1
# if a ==13 :
# break
打印省、市、縣三級菜單
可返回上一級
可隨時退出程序
menu= {#           '北京':{#                     '朝陽':{#                               '像素':{},#                     },##                     '西城':{#                               '西單':{},#                     },#                     '東城':{#                               '東單':{},#                     }#           },#           '天津':{#                     '和平':{#                               '大悅城':{},##                     },#                     '南開':{#                               '大悅城':{},#                     },#                     '河北':{#                               'Matt':{},#                     },#           },# }# control= menu# for i in menu:#      choice=input('choice...').strip()#      if choice not in menu : print('not in this mune...')#      if choice == 'quit': break#      control=control[choice]
相關文章
相關標籤/搜索