您好,登錄后才能下訂單哦!
import json
xxl = {'北京': {'天安': {"東京": ["尸體", "大多數已經腐爛!"], "偉人": ["紅旗", "升旗儀式!"]},
'長城': {"地獄": ["惡魔", "種類多,各種奇葩都有!"], "天使": ["墜落", "翅膀毛掉光了!"]},
'堵車': {'堵車': ["車多", "還不如兩條腿走!"], '加塞': ["擁擠", "撈出車禍!"]}},
'江蘇': {'無錫': {'薈聚': ["吃喝", "購物休閑好地方!"]}, '常州': {'恐龍': ["侏羅紀", "體驗恐龍時代"]}, '蘇州': {'sbs': ["電視", "電視塔新建在南施街地鐵口附近"]}},
'廣東': {}, }
while True:
for i in xxl:
print(i)
choise = input("按d退出程序或者選擇進入1》:")
if choise in xxl:
while True:
for i2 in xxl[choise]:# 打印每層的key
print("\t", i2)
choise2 = input("選擇進入2》:")
if choise2 in xxl[choise]:
while True:
for i3 in xxl[choise][choise2]:
print("\t\t", i3)
choise3 = input("選擇進入3》:")
if choise3 in xxl[choise][choise2]:
for i4 in xxl[choise][choise2][choise3]:
print("\t\t", i4)
choise4 = input("最后一層,按b返回》:")
if choise4 == "b":
pass
if choise3 == "b": # 結束當前層的循環
break
if choise2== "b":
break
if choise == "b":
break
if choise == "d":
f = open("dic.json", 'w', encoding="utf-8")
json.dump(xxl, f)
break
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。