python写入文件乱码文图
Posted syue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python写入文件乱码文图相关的知识,希望对你有一定的参考价值。
在打开文件时启用编码格式
file = open("yue.txt",‘w‘,encoding=‘utf-8‘)
import urllib.request
import re
data = urllib.request.urlopen(‘#‘).read().decode("utf-8")
pat =‘<div class="name">(.*?)</div>‘
pub = re.compile(pat).findall(data)
fh = open("yue1.txt",‘w‘,encoding=‘utf-8‘)
for x in range(0,len(pub)):
print(pub[x])
fh.write(pub[x]+‘\n‘)
fh.close()
以上是关于python写入文件乱码文图的主要内容,如果未能解决你的问题,请参考以下文章
解决python3 字符串写入txt文件/excel文件 中文乱码
Python里面的write()方法写入文件时候的乱码解决方法
python logging模块写入中文,文件乱码的解决方法