Quotes help make search much faster. Example: "Practice Makes Perfect"

Friday, October 11, 2013

#LearnStreet: Teacher's Preview Assignment Lesson 9 Sample Solution


def kitchen_or_bed(hungry, thirsty):
    # your if statement here
    if hungry or thirsty:
        return "go to kitchen"
    else:
        return "go to bed"

#This is just for you to see what happens when the function is called
print kitchen_or_bed(True, True)

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts