时间睡眠错误

时间:2018-05-11 17:21:42

标签: python

此代码中存在错误...

time.sleep(5)
print ("Loading Successfull")`

当我运行此代码时会弹出一个错误:

NameError: name 'time' is not defined

我想我不需要定义时间

我最近使用过此命令它从未说过TimeError它第一次发生

print ("-----------------Welcome to Digits counter-----------------")#Welcomes the user
print ("")
print ("Loading...")
time.sleep (3)
print("Load Sucessfull")

1 个答案:

答案 0 :(得分:2)

您需要先导入time模块。

import time

time.sleep(5)

或者不是导入完整的time模块,只需从sleep导入time

from time import sleep
sleep(5)

其余代码保持不变。