比如你只需要提取文件中的手机号,而这些文件的编码都不相同,这时,可以这样:
f = open(filename,‘r,encoding=‘utf-8‘,errors=ignore)
content = f.read()
#do something with content
f.close()
原文地址:https://www.cnblogs.com/kimkat/p/11664795.html
时间: 2024-10-03 21:41:32
比如你只需要提取文件中的手机号,而这些文件的编码都不相同,这时,可以这样:
f = open(filename,‘r,encoding=‘utf-8‘,errors=ignore)
content = f.read()
#do something with content
f.close()
原文地址:https://www.cnblogs.com/kimkat/p/11664795.html