用python實現列印省、市、縣三級選單 可返回上一級 可隨時退出程式

林堯彬發表於2020-04-04

#要求:
# 列印省、市、縣三級選單
# 可返回上一級
# 可隨時退出程式

# menu = {
# '北京':{
# '海淀':{
# '五道口':{
# 'soho':{},
# '網易':{},
# 'google':{}
# },
# '中關村':{
# '愛奇藝':{},
# '汽車之家':{},
# 'youku':{},
# },
# '上地':{
# '百度':{},
# },
# },
# '昌平':{
# '沙河':{
# '老男孩':{},
# '北航':{},
# },
# '天通苑':{},
# '回龍觀':{},
# },
# '朝陽':{},
# '東城':{},
# },
# '上海':{
# '閔行':{
# "人民廣場":{
# '炸雞店':{}
# }
# },
# '閘北':{
# '火車戰':{
# '攜程':{}
# }
# },
# '浦東':{},
# },
# '山東':{},
# }
# exit_a= False
# current = menu
# gyf=[menu]
# '''
# 定義變數
# '''
#
# while not exit_a: #while 條件迴圈 exit—a 為真則執行for迴圈
# for i in current:
# print(i)
# # 使用者輸入 並去除空白
# choice= input('>>:').strip()
# #if判斷 choice ==‘b’ 執行current gyf的列表-1
# if choice =="b":
# current=gyf[-1]
# gyf.pop()
# elif choice not in current:
# #choice 使用者輸入不再curent的列表裡 直接跳出本次迴圈
# continue
# else:
# #條件不成立執行以下程式碼
# gyf.append(current)
# current=current[choice]

轉載於:https://www.cnblogs.com/Lollipop1/p/8041527.html

相關文章