mirror of
http://47.106.207.27:3000/Jeremy_liu/AI0814_jiaoan_public.git
synced 2026-09-27 08:24:14 +08:00
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')) |