举例说明如何将一份字符串文件存入csv文件当中
时间: 2023-06-17 17:06:20 浏览: 70
假设有一个字符串文件 `text.txt`,内容如下:
```
This is a text file.
It contains some text.
We will save it to a CSV file.
```
下面是将该文件存入 CSV 文件的 Python 代码:
```python
import csv
with open('text.txt', 'r') as file:
text = file.read().replace('\n', '') # 去除换行符
with open('text.csv', 'w', newline='') as file:
writer = csv.writer(file)
writer.writerow([text])
```
运行该代码后,会在当前目录下生成一个名为 `text.csv` 的 CSV 文件,其内容为:
```
"This is a text file.It contains some text.We will save it to a CSV file."
```
其中,文本被包含在一个单元格中,并用引号括起来,因为文本中包含了逗号。
阅读全文