如果我使用from time import time
,則Python 2.7.3不會識別time.sleep(60)
。但是如果我使用import time
,那麼Python不會識別t=time()
。爲什麼會發生?有什麼方法可以在同一個程序中使用time()
和time.sleep(x)
?Python:爲什麼導入時間不適用於time(),但適用於time.sleep()?
from time import time
#import time
intervalInMinute = 1
t = time()
while 1:
time.sleep(60)
錯誤的類型我得到的是:
Traceback (most recent call last): File "myProg.py", line 9, in time.sleep(60) AttributeError: 'builtin_function_or_method' object has no attribute 'sleep'