Python 等待时间,等待用户输入的过程

有时候我们希望在执行下一步骤之前让我们的Python程序等待一段时间。我们可以使用时间模块的sleep()函数来暂停程序指定的秒数。

Python等待时间

让我们来看一个快速的示例,在执行更多的语句之前,暂停我们的程序5秒钟。

import time

print('Hello There, next message will be printed after 5 seconds.')

time.sleep(5)

print('Sleep time is over.')

当我们运行此程序时,第一次打印语句和第二次打印语句之间将会有5秒的延迟。

Python 等待用户输入

有时候我们需要通过控制台从用户那里获取一些输入。我们可以使用input()函数来实现这个目的。在这种情况下,程序将无限期等待用户输入。一旦用户提供了输入数据并按下回车键,程序将开始执行下一条语句。

sec = input('Let us wait for user input. Let me know how many seconds to sleep now.\n')

print('Going to sleep for', sec, 'seconds.')

time.sleep(int(sec))

print('Enough of sleeping, I Quit!')
python wait time, python wait for user input
发表回复 0

Your email address will not be published. Required fields are marked *