𝕬
Size: a a a
𝕬
R
$
R
R3
k
$
𝕬
$
R3
VA
𝕬
$
$
VA
<Ч
py3
from pprint import pprint
import json
my_dict ={
1:"hello",
"1":"world",
}
pprint(my_dict)
json_str = json.dumps(my_dict)
print(json_str)
pprint(json.loads(json_str))
{1: 'hello', '1': 'world'}
{"1": "hello", "1": "world"}
{'1': 'world'}<Ч
VA
py3
from pprint import pprint
import json
my_dict ={
1:"hello",
"1":"world",
}
pprint(my_dict)
json_str = json.dumps(my_dict)
print(json_str)
pprint(json.loads(json_str))
{1: 'hello', '1': 'world'}
{"1": "hello", "1": "world"}
{'1': 'world'}А
<Ч