我一直在使用输入函数作为暂停脚本的一种方式:
print("something")
wait = input("Press Enter to continue.")
print("something")
有正式的方式吗?
我一直在使用输入函数作为暂停脚本的一种方式:
print("something")
wait = input("Press Enter to continue.")
print("something")
有正式的方式吗?
当前回答
通过这个方法,你可以通过按任何指定的键来恢复你的程序:
import keyboard
while True:
key = keyboard.read_key()
if key == 'space': # You can put any key you like instead of 'space'
break
同样的方法,但方式不同:
import keyboard
while True:
if keyboard.is_pressed('space'): # The same. you can put any key you like instead of 'space'
break
注意:你可以通过在shell或cmd中写这个命令来安装键盘模块:
pip install keyboard
其他回答
print ("This is how you pause")
input()
我想我喜欢这个解决方案:
import getpass
getpass.getpass("Press Enter to Continue")
它隐藏了用户输入的任何内容,这有助于澄清这里没有使用输入。
但是要注意OS X平台。它显示了一个可能令人困惑的键。
最好的解决方案可能是自己执行类似getpass模块的操作,而不执行read -s调用。也许让前景色与背景颜色相匹配?
仅适用于Windows,请使用:
import os
os.system("pause")
非常简单:
raw_input("Press Enter to continue ...")
print("Doing something...")
我假设您希望在没有输入的情况下暂停。
Use:
time . sleep(秒)