Python read from list [closed]

If your list looks something like this, words = ["a","b","c"..],

All you have to do is iterate over them using the for statement,

for i in words:
    print i

That should print out the words:

a
b
c
....

Leave a Comment