View Single Post
Old Apr 5th, 2005, 11:23 AM   #4
sykkn
Hobbyist Programmer
 
Join Date: Apr 2004
Location: Texas
Posts: 106
Rep Power: 5 sykkn is on a distinguished road
I'm pretty sure they want you to take the example and print the length rather than the value ....

horsemen = ["war", "famine", "pestilence", "death"] 

i = 0 
while i < len(horsemen): 
    print len(horsemen[i])
    i = i + 1
sykkn is offline   Reply With Quote