#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