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

Friday, October 11, 2013

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


def check_length(phrase):
    # your if condition here
    if len(phrase) < 30:
        return 1
    # your elif condition here
    elif len(phrase) == 30:
        return 2
    # your else condition here
    else:
        return 3

#This is just for you to see what happens when the function is called
print check_length("hi, i am a phrase")

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts