from time import time
を使用すると、Python 2.7.3はtime.sleep(60)
を認識しません。しかし、import time
を使用すると、Pythonはt=time()
を認識しません。なぜこれが起こるのですか?同じプログラムにtime()
とtime.sleep(x)
を使用する方法はありますか?Python:なぜimport timeは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'