Python: AttributeError: builtin_function_or_method object has no attribute sleep
Python: AttributeError: builtin_function_or_method object has no attribute sleep
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))
Python: AttributeError: builtin_function_or_method object has no attribute sleep
you are importing wrong way time package…
import time
time.sleep(5) #sleeps for 5 seconds
That is all.