python txt文件转换为json
时间: 2023-05-23 14:01:31 浏览: 426
txt转json脚本
3星 · 编辑精心推荐
可以使用 Python 的 json 库,通过读取文本文件,将其转换为 Python 对象,然后使用 json.dump() 函数将 Python 对象转换为 JSON 格式的数据,将其写入到另外一个文件中,具体代码如下:
import json
# 读取文本文件
with open('example.txt', 'r') as f:
data = f.read()
# 转换为 Python 对象
python_obj = {'data': data}
# 将 Python 对象转换为 JSON 格式的数据
json_data = json.dumps(python_obj)
# 将 JSON 格式的数据写入到文件中
with open('example.json', 'w') as f:
f.write(json_data)
注:此处的 example.txt 和 example.json 都需要你提前创建好。
阅读全文