Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须验证来自标准输入的用户输入,该输入不会通过按 Enter 键输入。所以 readline() 和其他依赖于 Enter 的函数对我没有用。
实际上,promt 将被填充,并且每次击键都必须作为一个事件来处理。如何访问提示缓冲区的内容?
看看有没有帮助
http://code.activestate.com/recipes/134892/
我不清楚您所说的“提示”是什么意思,但听起来您需要响应单个按键,而不是文本输入。
这在Python 常见问题解答中的“我如何一次获得一个按键?”中进行了介绍。