暂停Python程序的正确方法

2022-05-19 00:00:00 python sleep

问题描述

我一直使用input函数作为暂停脚本的方式:

print("something")
wait = input("Press Enter to continue.")
print("something")

有没有正式的方法来做到这一点?


解决方案

在我看来很好(或者在Python2.x中是raw_input())。或者,如果要暂停特定秒数,可以使用time.sleep()

import time
print("something")
time.sleep(5.5)    # Pause 5.5 seconds
print("something")

相关文章