raw_input 不会在 readline 中留下历史记录
有没有一种方法可以使用 raw_input 而不在阅读行历史记录中留下符号,以便在制表符完成时不会显示它?
Is there a way of using raw_input without leaving a sign in the readline history, so that it don't show when tab-completing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个类似的函数
并调用该函数而不是 raw_input。您可能不需要负 1,具体取决于您从何处调用它。
You could make a function something like
and call that function instead of raw_input. You may not need the minus 1 dependent on where you call it from.