使用Python动态创建JSON文件可以通过以下步骤实现:
import json
data = {
"name": "John",
"age": 30,
"city": "New York",
"hobbies": ["reading", "coding", "traveling"]
}
json_str = json.dumps(data)
with open("data.json", "w") as json_file:
json_file.write(json_str)
完整的代码示例:
import json
data = {
"name": "John",
"age": 30,
"city": "New York",
"hobbies": ["reading", "coding", "traveling"]
}
json_str = json.dumps(data)
with open("data.json", "w") as json_file:
json_file.write(json_str)
这样就可以使用Python动态创建一个包含数组类型对象的JSON文件。在上述示例中,我们创建了一个包含"name"、"age"、"city"和"hobbies"键的字典对象,并将"hobbies"键对应的值设置为一个包含三个元素的列表。然后,我们将该字典对象转换为JSON字符串,并将其写入名为"data.json"的文件中。
推荐的腾讯云相关产品:腾讯云对象存储(COS)
领取专属 10元无门槛券
手把手带您无忧上云