6 lines
83 B
Python
6 lines
83 B
Python
import json
|
|
b={1:2}
|
|
a='{"name":null}'
|
|
b.get(1)
|
|
j=json.loads(a)
|
|
print(j.get('name')) |