admin 管理员组

文章数量: 1086019


2024年1月11日发(作者:csdn社区)

22324import json

emoloyees_string = '''{ "employees" : [ { "first_name": "Michael",

"last_name": "Rodgers",

"department": "Marketing" }, { "first_name": "Michelle",

"last_name": "Williams",

"department": "Engineering" } ]}'''

data = (employees_string)

print(type(data))#output#3. 读取数据82930313233import json

employees_string = '''{ "employees" : [ { "first_name": "Michael",

"last_name": "Rodgers",

"department": "Marketing"

}, { "first_name": "Michelle",

"last_name": "Williams",

"department": "Engineering" } ]}'''

data = (employees_string)

print(type(data))#output#

#access first_namefor employee in data["employees"]:

print(employee["first_name"])

#output#Michael#Michelle


本文标签: 社区 作者