Quotes help make search much faster. Example: "Practice Makes Perfect"
Saturday, December 8, 2012
LearnStreet Python Lesson 5 Exercise 2
def run():
# tired = your value goes here
tired = 10
while tired >= 1:
#your code here
print "sleep"
tired -=1 #important if you don't want an infinite loop
return tired
No comments:
Post a Comment