python 读取csv文件转成字符串_Python将csv文件转换为json文件
时间: 2023-10-09 09:07:52 浏览: 413
Python实现csv文件转json文件
要将 CSV 文件读取并转换为字符串,可以使用 Python 的内置 csv 模块。下面是一个示例代码:
```python
import csv
with open('file.csv', newline='') as csvfile:
csv_reader = csv.reader(csvfile)
for row in csv_reader:
print(','.join(row)) # 将每行转换为字符串并打印出来
```
这将打开名为 file.csv 的 CSV 文件,并将每行转换为字符串并打印出来。
要将 CSV 文件转换为 JSON 文件,可以使用 Python 的内置 json 模块。下面是一个示例代码:
```python
import csv
import json
csvfile = open('file.csv', 'r')
jsonfile = open('file.json', 'w')
fieldnames = ("Name", "Age", "Gender")
reader = csv.DictReader(csvfile, fieldnames)
for row in reader:
json.dump(row, jsonfile)
jsonfile.write('\n')
```
这将打开名为 file.csv 的 CSV 文件,并使用列标题作为键将每行转换为 JSON 对象,并将这些 JSON 对象写入名为 file.json 的文件中。
阅读全文