Quotes help make search much faster. Example: "Practice Makes Perfect"
Saturday, December 8, 2012
LearnStreet Python Lesson 4 Exercise 6
#sample solution
def check_length(phrase):
lenphrase = len(phrase)
# your if condition here
if lenphrase < 30:
return 1
# your elif condition here
elif lenphrase == 30:
return 2
# your else condition here
else:
return 3
No comments:
Post a Comment