📜  如何在 python 代码示例中等待

📅  最后修改于: 2022-03-11 14:47:03.747000             🧑  作者: Mango

代码示例6
#Wait in python
#Module required - time
import time
#Wait in for the time you put
time.sleep(0.5)
print('Wait in python')