- 授权协议: GPL
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://gitee.com/gojuukaze/tty_menu
- 软件文档: https://gitee.com/gojuukaze/tty_menu
软件介绍
这是一个 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]))
The Nature of Code
Daniel Shiffman / The Nature of Code / 2012-12-13 / GBP 19.95
How can we capture the unpredictable evolutionary and emergent properties of nature in software? How can understanding the mathematical principles behind our physical world help us to create digital w......一起来看看 《The Nature of Code》 这本书的介绍吧!

