I have a text file like below
# 1.txt
who is the\u00a0winners\u00a0where\u00a0season result\u00a0is 7th
If I read a file and print it, it shows
>>> s = open("1.txt").read()
>>> print(s)
who is the\u00a0winners\u00a0where\u00a0season result\u00a0is 7th
However, If I do like below with the same string,
>> s = "who is the\u00a0winners\u00a0where\u00a0season result\u00a0is 7th"
>> print(s)
who is the winners where season result is 7th
I want to read a text file like "1.txt" and print it like the below one. I can not find how to do it. Please help me. Thanks.