如何将德语文本写入 CSV 文件?
How do you write German text into a CSV file?
我正在尝试将从德国网站抓取的文本写入 CSV 文件。我尝试使用 UTF-8 编码:
with open('/Users/filepath/result.csv', 'a', encoding='utf8') as f:
f.write(text)
但这是出现在 CSV 文件中而不是带有 ü 的内容:
Projekt für Alleinerziehende mit mehreren (behinderten) Kindern
尝试使用 ISO-8859-15 编码。还要确保当您在编辑器中打开文件时,它的编码设置为相同的编码。
我正在尝试将从德国网站抓取的文本写入 CSV 文件。我尝试使用 UTF-8 编码:
with open('/Users/filepath/result.csv', 'a', encoding='utf8') as f:
f.write(text)
但这是出现在 CSV 文件中而不是带有 ü 的内容:
Projekt für Alleinerziehende mit mehreren (behinderten) Kindern
尝试使用 ISO-8859-15 编码。还要确保当您在编辑器中打开文件时,它的编码设置为相同的编码。