1. 程式人生 > >老男孩Python 3.5學習第02周作業——三級選單

老男孩Python 3.5學習第02周作業——三級選單

Readme:

本程式通過字典來實現對三級選單的逐級訪問,以及逐層退回。

流程圖:

1.建立字典。

2.利用while not false實現選單重複訪問,其包容性遠大於while true。

3.由外向內逐步實現對其子選單的訪問。

4.通過pass命令,實現返回功能。

data = {
'遼寧省':{
'大連市':[
'甘井子區','中山區','西崗區','沙河口區 '
],
'遼陽市':[
'白塔區','文聖區','巨集偉區'
]
},
'海南省':{
'文昌市':[
'文城鎮','龍樓鎮'
],
'海口市':[
'瓊山區','秀英區','美蘭區'
]
},
'天津市':{
'南開區':{},
'和平區':{},
'紅橋區':{}
}
}
exit_flag = False
while not exit_flag:
for i in data:
print(i)
your_firstchoice = input('請選擇省份:')
if your_firstchoice in data:
while not exit_flag:
for j in data.get(your_firstchoice):
print('\t',j)
your_secondchoice = input('請繼續選擇:')
if your_secondchoice in data[your_firstchoice]:
for x in data[your_firstchoice][your_secondchoice]:
print('\t\t',x)
your_thirdchoice = input('返回請按“b”')
if your_thirdchoice == 'b':
pass
elif your_thirdchoice == 'q':
exit_flag = True
if your_secondchoice == 'b':
break
elif your_secondchoice == 'q':
exit_flag = True