import math
import random
import sys
b=[]
steve = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
for x in steve:
    print (steve[x])

Traceback (most recent call last):
  File "C:\Functions\blank.py", line 7, in <module>
    print (steve[x])
IndexError: list index out of range
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to