I have an array list in a txt file like:
[1, 2, 3, 4, 5]
I would like to get this data into an array in my python code. Afterall, when I print it in Python I should see below output:
[1, 2, 3, 4, 5]
(Exactly same with content in txt.)
Is that possible? If yes, how?