I have a txt file that contains lines like b'111\r\n222\r\n333'
.
When I read the file with
with open('raw2.txt', 'r') as f:
nums = f.read().splitlines()
then the b-rows are turned into regular strings.
"b'111\\r\\n222\\r\\n333'"
If I read as 'rb', these lines become binary
b"b'111\\r\\n222\\r\\n333'"
How do I read the file correctly so that they look like:
b'111\r\n222\r\n333'
?
Thanks