首页 > 代码库 > Python之路-字符编码&数据类型补充(待更新)

Python之路-字符编码&数据类型补充(待更新)

作业

三级菜单程序 

技术分享
history =[menu]
while True:
    for item in history[-1]:
        print(item)
    choice = input("input your choice :").strip()
    if choice == b and len(history) > 1:
        history.pop()
    elif choice == q: break
    else:
        if choice in history[-1]:
            history.append(history[-1][choice])
View Code

 

Python之路-字符编码&数据类型补充(待更新)