gpt4 book ai didi

python - getch() 在打印前接受输入

转载 作者:行者123 更新时间:2023-12-04 09:36:53 30 4
gpt4 key购买 nike

我正在尝试打印一条消息,然后使用以下代码段将用户的单个字符作为输入。

import getch

print("Enter a character: ", end="")
char = getch.getch()
print("You entered", char)
但由于某些原因,它首先要求输入。提供输入后,它会显示消息。我该如何解决?

最佳答案

这是因为您的打印缓冲区没有被刷新。尝试这个:

import getch

print("Enter a character: ", end="", flush=True)
char = getch.getch()
print("You entered", char)

关于python - getch() 在打印前接受输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62532678/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com