此代码中存在错误...
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")
答案 0 :(得分:2)
您需要先导入time
模块。
import time
time.sleep(5)
或者不是导入完整的time
模块,只需从sleep
导入time
:
from time import sleep
sleep(5)
其余代码保持不变。