如何创建一个菜单或目录? [关闭](How to create a menu or direct

2019-09-29 13:58发布

如何使使用Python简单的菜单/指南? 我想有字母,用户会按完成的任务,而当他们进入后提示信,任务完成...例如:

A.创建用户名
B.编辑用户名
C.退出

选择:

然后将所有用户所要做的就是输入提示后的一个字母。

Answer 1:

A(非常)基本的方法是这样的:

print "A. Create Username"
print "B. Edit Username"
input = raw_input("Enter your choice")

if input == "A":
    print "A was given" 
if input == "B":
    print "B was given"


Answer 2:

一个非常基本的版本:

def foo():
    print "Creating username..."

def bar():
    print "Editing username..."

while True:
    print "A. Create Username"
    print "B. Edit Username"
    print "C. Exit"
    choice = raw_input()
    if choice.lower() == 'a':
       foo()
    elif choice.lower() == 'b':
       bar()
    elif choice.lower() == 'c':
       break
    else:
       print "Invalid choice"

接受大写和小写字母的选择。



Answer 3:

在Python控制台菜单生成
有阅读和发布回到你的努力,通过dm03514规定



文章来源: How to create a menu or directory? [closed]