tty_menu - 命令行菜单快速创建工具


GPL
跨平台
Python

软件简介

这是一个 python 编写的快速创建命令行菜单的工具。

Install

pip install tty_menu

Example

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]))