码迷,mamicode.com
首页 > 编程语言 > 详细

【python】python读写文件,都不乱码

时间:2019-01-25 17:35:52      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:txt   filename   current   while   code   编码方式   二进制   进制   pre   

读是按照文本的编码方式读取,写是按照文本的编码方式追加

import chardet


fileName = E:/2/采集数据_pswf12_180大0小35750_20181206.txt

# 按照二进制只读模式 打开文件 仅读取一行  并解析文本内容的编码方式
currentFile = open(fileName,mode=rb)
content = currentFile.readline()
print(chardet.detect(content))



# # 按照编码方式为  UTF-8 按行读取  整个文本内容
currentFile = open(fileName,encoding=utf-8)
line = currentFile.readline()

while line:
    print(line)
    line = currentFile.readline()


currentFile = open(fileName,mode=a+,encoding=utf-8)
currentFile.write("德玛西亚")
# 关闭文件
currentFile.close()

 

【python】python读写文件,都不乱码

标签:txt   filename   current   while   code   编码方式   二进制   进制   pre   

原文地址:https://www.cnblogs.com/sxdcgaq8080/p/10320269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!