这是一个 python 编写的快速创建命令行菜单的工具。
pip install tty_menu
from tty_menu import tty_menu l = ['a', 'b', 'c'] pos = tty_menu(l, "What is your word?") print("Your word is %s" % (l[pos]))