I tried this:
saves = open('filename','r')
Y = saves.readlines()
print(Y)
but I get the output [b'[0, 0, 0, 0, 0,]']
instead of [0, 0, 0, 0, 0,]
The text file content is [0, 0, 0, 0, 0]
(This not duplicate as the question is about something else and the answer didn't help me)