What you show, ('A','B','C','D','E'), is not a list, it's a tuple. But the indexing method is same for list and tuple. In either case you append the index in square brackets.
So you can write it as:
thetuple = ('A','B','C','D','E')
print thetuple[0]
prints A, and so forth.