As of above, I can't find any other sources that would provide a working solution. Basically I want to take strings in a text file with this stored:
0
1
2
3
2
4
And store the numbers into a list of integers like this:
[0, 1, 2, 3, 2, 4]
Any help?