I have a list of integer percentages which I need to print using the following pattern:
The index of a value, a tab (8 spaces), a '*' printed for each percentage point
also if the value for an index is 0, print 'less than 1 percent'
I have tried this code:
for b in new_tally:
if b > 0:
print new_tally[b], \t, '*' * b
else:
print 'Less than 1% of words had this length'
However I keep getting the error code: list index out of range.
I do not understand this at all, can someone point out what I have done wrong?
print b-1, '*' * b, maybe? – yosukesabai Nov 2 '11 at 18:41lst = [5, 7, 8, 6, 4, 2].for b in lst: print bis going to print lst's conteent, not index. so you are going to get 8 for the thrird one. you are using this 8 again as index for lst[b], then there is no such thing as 8th element of the list – yosukesabai Nov 2 '11 at 19:35