I'm receiving a strange error when running my program? I'm not sure why it wont let me sleep.
Traceback (most recent call last):
Not an add minute at all.
File "C:/Users/admin/PycharmProjects/test/odd.py", line 15, in <module>
time.sleep(0.05)
AttributeError: 'builtin_function_or_method' object has no attribute 'sleep'
Code:
from datetime import datetime
from time import time
from random import random
odds = [1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59]
right_this_minute = datetime.today().minute
for i in range(0, 11):
if right_this_minute in odds:
print("This minute seems a little odd.")
else:
print("Not an add minute at all.")
time.sleep(random.randint(1, 60))
from time import timeis makingtimein your code thetimefunction in thetimemodule, not the module itself. Doimport timeinstead.import timewhen callingtime.time()I received the errorbuiltin_function_or_method' object has no attribute 'time'which was silly. However I previously testedfrom time import timeand for some reason Spyder or Python didn't forget this import. I had to reset the kernel to get rid of the error.