如何使用Python sleep()函数?

While developing applications we may need some rest for the execution. Python provides sleep() function for different use cases in order to delay program execution. In this tutorial, we will examine Python sleep() function for different conditions.

在开发应用程序时,我们可能需要一些休息才能执行。 Python为不同的用例提供了sleep()函数,以延迟程序执行。 在本教程中,我们将针对不同的条件检查Python sleep()函数。

睡眠时间精度 (Sleep Time Precision)

Before starting a tutorial we should know that Python is an interpreted language and is not real-time. So while using python there will be some inconsistencies. While using sleep function Linux can use 1-millisecond precision but Windows has 13 milliseconds precision. Keep in mind that if you will develop time precision applications.

在开始教程之前,我们应该知道Python是一种解释性语言,不是实时的。 因此,在使用python时会有一些不一致之处。 使用睡眠功能时,Linux可以使用1毫秒的精度,而Windows可以使用13毫秒的精度。 请记住,如果要开发时间精确度应用程序。

导入时间模块 (Import time Module)

As a beginner, we know that Python provides modules for different functionalities. time module provides the sleep() function. In order to use sleep() function we should import the time library like below.

作为一个初学者,我们知道Python提供了用于不同功能的模块。 time模块提供sleep()函数。 为了使用sleep()函数,我们应该导入time库,如下所示。

import time

sleep()函数 (sleep() Function)

Now we can use sleep() function by providing the time we want to wait. In this example, we will wait for 1 sec

你可能感兴趣的:(python,css,人工智能,区块链,linux)