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

Friday, October 11, 2013

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


def who_are_you(green, large):
    # Write if-elif-else statements below
    if green and large:
        return "hulk"
    elif green:
        return "alien"
    elif large:
        return "elephant"
    else:
        return "Bruce Banner"
#This is just for you to see what happens when the function is called
print who_are_you(True, True)

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts