I have a textfile that looks like:
71456137\n
69873481\n
71015205\n
77620788\n
69782796\n
71307244\n
68843955\n
74431739\n
68162271\n
77464886\n
71281027\n
100055063\n
68637778\n
2484\n
I want to read it in in python as a list of strings. I want to ask which is the 4th entry Like:
a = open('mytextfile.txt')
print(a[4])
>>> 69782796
Can someone help me with that?