Python是一种高级编程语言,常用于数据处理和分析。json是一种轻量级的数据交换格式,在Python中,我们可以使用json.dumps()函数将Python对象转换为json字符串。下面是一个示例,演示了如何使用json.dumps()函数将Python字典转换为json字符串,并将其保存到文件中:
import json
data = {'name': 'John', 'age': 30, 'city': 'New York'}
json_str = json.dumps(data)
with open('data.json', 'w') as f:
f.write(json_str)
print('Json字符串已保存到data.json文件中。')
暂无评论