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

Tuesday, November 27, 2012

Codecademy: Late Arrivals & List Length


#sample solution


suitcase = []
suitcase.append("sunglasses")

# Your code here
suitcase.append("ball")
suitcase.append("towel")
suitcase.append("book")
list_length = len(suitcase) # length of `suitcase`

print "There are " + str(list_length) + " items in the suitcase."
print suitcase

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts