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

for x in myList:
    print( x )
