题库 Python题库 题目列表 下面Python代码的输出结果正确的是?( )import...
单选题

下面Python代码的输出结果正确的是?( 

import json
json_str = '{"name": "Alice", "age": 25, "city": "New York"}'
data = json.loads(json_str)
print(data)
A.

{"name": "Alice", "age": 25, "city": "New York"}

B.

{'name': 'Alice', 'age': 25, 'city': 'New York'}

C.

[{'name': 'Alice', 'age': 25, 'city': 'New York'}]

D.

['name': 'Alice', 'age': 25, 'city': 'New York']

题目信息
2024年 3月 选择题
0%
正确率
0
评论
55
点击