运行下列代码段,输出结果为True的是( )。
A、
A、importjsondata='{"one":"1","two":"2","three":"3","four":"4","five":"5"}'text=json.loads(data)print(type(data)==type(text))
B、
B、data='{"one":"1","two":"2","three":"3","four":"4","five":"5"}'print(type(data)==type('123'))
C、
C、importjsondata='{"one":"1","two":"2","three":"3","four":"4","five":"5"}'text=json.loads(data)print('1'intext)
D、
D、importjsondata='{"one":"1","two":"2","three":"3","four":"4","five":"5"}'text=json.dumps(data)print('1'intext)
发布时间:2024-06-25 13:08:49