Python 中使用“raw_input”退格

发布于 2024-11-29 03:33:29 字数 371 浏览 0 评论 0原文

我像这样使用 raw_input()

while True:
  print "MC ID (CTRL-D = done, 0 = sets, ? = lookup):",
  try:
    mcid=raw_input()
  except:
    print
    break
  # evaluate user input
  # ...

现在,如果您输入一些内容,例如 abc 并按退格键来更正某些内容,一旦删除 a code> 时,print 的输出也会被删除(并且光标跳到行首),以便您不再看到输入提示。有办法避免这种情况吗?

I am using raw_input() like this:

while True:
  print "MC ID (CTRL-D = done, 0 = sets, ? = lookup):",
  try:
    mcid=raw_input()
  except:
    print
    break
  # evaluate user input
  # ...

Now if you type something, e.g. abc and hit backspace to correct something, as soon as you remove the a, the output from print is erased as well (and the cursor jumps to the beginning of the line), so that you no longer see the input prompt. Is there a way to avoid this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

亽野灬性zι浪 2024-12-06 03:33:29

试试这个:

mcid = raw_input("MC ID (CTRL-D = done, 0 = sets, ? = lookup): ")

Try this:

mcid = raw_input("MC ID (CTRL-D = done, 0 = sets, ? = lookup): ")
落花浅忆 2024-12-06 03:33:29

我无法重现它,但你可以尝试以下方法:

mcid=raw_input("MC ID (CTRL-D = done, 0 = sets, ? = lookup):")

I cannot reproduce it, but you can try this way:

mcid=raw_input("MC ID (CTRL-D = done, 0 = sets, ? = lookup):")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文