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))
Change from time import time
to from time import sleep
Then you can use sleep directly instead of time.sleep
snakecharmeb is right, and also, you need to import random rather than from random import random.
from datetime import datetime
import time
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))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With