So I have this kind of data received:
[{
'Status': 0,
'Button': False,
'Message': None,
'Id': None,
'hu': 0,
'Mode': 'LocModePresence',
'mac': '00011171815E',
'mapId': '17_1_0',
'Seq': 236,
'tam': False,
'temperature': 0.0,
'time': 1603797352911,
'type': 'TTT',
'x': 2716.0,
'y': 648.0,
'zone': '301990146'
}, {
'Status': 0,
'Button': False,
'Message': '6e0002000c00',
'Id': '3_2',
'hu': 0,
'Mode': 'LocModePresence',
'mac': '00011171815E',
'mapId': '17_1_0',
'Seq': 237,
'tam': False,
'temperature': 0.0,
'time': 1603797357105,
'type': 'TTT',
'x': 2716.0,
'y': 648.0,
'zone': '301990146'
}]
And I want to write it into JSON
file:
with open('data.json', 'w', encoding='utf-8') as f:
json.dump(my_data, f, ensure_ascii=False, indent=4)
If i want to take this data that have as string (for debug reason) why when I put it inside 2 '
sign this show me error
:
illegal target for variable annotation
I want to be able to write this on my disk and also read it to compare to another file that I will get (and also this file need to be write on the disk)