解析文件时的奇怪字符

时间:2018-12-06 15:47:54

标签: sql-server python-3.x character-encoding

每隔一段时间我都会解析一个文件,当我尝试将其加载到SQL Server时它会失败。当我检查文件时,我在Notepad ++中看到了奇数字符,无法在Notepad中查看。

例如:奇怪的字符

enter image description here

我尝试在我的读写操作中放置一个编码参数来指定“ ANSI”,但它似乎不起作用。关于如何识别或忽略这些字符的任何建议?

with open(<Path to File to be read>,'r',encoding='ANSI') as infile:
    with open(<Path to File to write to>,'w',encoding='ANSI') as outfile:

0 个答案:

没有答案