
# seq2.py
myList = ['a', 'b', 'c', 'd', 'e']

i = 0
while i < len(myList):
    print( myList[i] )
    i += 1
