Posts by Kaique Silva • 1 point
1 post
-
-3
votes1
answer81
viewsA: Facebook Json - Problems with accentuation - Python
# -*- encoding: utf-8 -*- import json with open("friends.json", "r", encoding='UTF-8') as read_file: data = json.load(read_file) data = (data['friends']) for n in data: nome =…