继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

一个python程序

喵喵一只汪
关注TA
已关注
手记 315
粉丝 87
获赞 467

date = {
'北京':{
"昌平":{
"沙河": ["old boy", "test"],
"天通苑":["链家地产","我爱我家"]
},
"朝阳":{
"望京":["奔驰","陌陌"],
"国贸":["CICC","HP"],
"东直门":["Adevent","飞信"]
},
"海淀":{},
},
'山东':{
"德州":{},
},
'广东':{
"东莞":{},
"常熟":{},
"佛山":{},
},
}

exit_flag = False
while not exit_flag:
for i in date:
print(i)
choice = input("选择进入1>>:")
if choice in date:
while not exit_flag:
for i2 in date[choice]:
print("\t",i2)
choice2 = input("选择进入2>>:")
if choice2 in date[choice]:
while not exit_flag:
for i3 in date[choice][choice2]:
print("\t\t",i3)
choice3 = input("选择进入3>>:")
if choice3 in date[choice][choice2]:
for i4 in date[choice][choice2][choice3]:
print("\t\t",i4)
choice4 = input("最后一层,按b返回>>:")
if choice4 == "b":
pass
elif choice4 == "q":
exit_flag = True

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP