从Python创建多个JSON文件可以通过以下步骤实现:
import json
data = [
{"name": "John", "age": 30, "city": "New York"},
{"name": "Alice", "age": 25, "city": "London"},
{"name": "Bob", "age": 35, "city": "Paris"}
]
def create_json_file(data, filename):
with open(filename, 'w') as file:
json.dump(data, file, indent=4)
create_json_file(data, 'file1.json')
create_json_file(data, 'file2.json')
create_json_file(data, 'file3.json')
这样就可以创建名为file1.json
、file2.json
和file3.json
的三个JSON文件,并将data
中的内容写入这些文件中。
JSON文件创建完成后,可以根据需要进行进一步的处理和使用,例如读取、解析或传输给其他系统。
腾讯云相关产品和产品介绍链接地址:
请注意,以上仅为示例,其他云计算品牌商也提供类似的产品和服务。
领取专属 10元无门槛券
手把手带您无忧上云