Привет, ребята, это мой файл content.json
[{"content": "Let\u2019s go home \n\u00a0\nNow", "channel_id": "423266223960096770", "mentions": [], "type": 0}]
и это мой code.py
with open('content.json', 'r') as current_stuff:
before = json.loads(current_stuff.read())
before_set = []
for b in before:
before_set.append(b['content'])
setx = str(before_set)
string9 = str(''.join( c for c in setx if c not in "[{'}]" ))
print (string9)
Печать выводит этот вывод:
Let’s go home \n\xa0\nNow
Я хочу, чтобы это распечатывалось вот так
Let’s go home
Now
, который работает, когда я делаю это:
print ("Let\u2019s go home \n\u00a0\nNow")
как я могу это исправить?