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

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

import json
data = {
    "name": "Alice",
    "age": 25,
    "city": "New York"
}
text = json.dumps(data)
print(text)
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月 选择题
100%
正确率
0
评论
56
点击