有没有什么简单的方法可以使 python raw_input UI 更像 bash UI?
我在脚本中使用 raw_input() 来获取需要迭代优化的用户输入。
有没有什么简单的方法可以为其提供熟悉的光标功能,启用光标和(理想情况下)鼠标支持,以便左右光标沿着字符串滚动,向上光标显示上一个条目?
谢谢 :)
i am using raw_input() in a script to take a user input which needs to refined iteratively.
is there any way simple way to give it the familiar cursor functionality enabling cursor and (ideally) mouse support so that the left and right cursors scroll along the string and the up cursor brings up the previous entry?
thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过包装 cmd 模块,您可以从类似 bash 的历史列表编辑中受益。
http://docs.python.org/library/cmd.html
you can benefit from bash-like history-list editing by wrapping cmd module.
http://docs.python.org/library/cmd.html
您可以使用
readline
模块。You could make use of the
readline
module.