有没有什么简单的方法可以使 python raw_input UI 更像 bash UI?

发布于 2024-10-04 07:15:02 字数 132 浏览 4 评论 0原文

我在脚本中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九局 2024-10-11 07:15:03

通过包装 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

违心° 2024-10-11 07:15:02

您可以使用 readline 模块。

You could make use of the readline module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文