Python读写unicode文件的方法

Python读写unicode文件的方法,第1张

概述本文实例讲述了Python读写unicode文件方法。分享给大家供大家参考。具体实现方法如下:

本文实例讲述了Python读写unicode文件的方法。分享给大家供大家参考。具体实现方法如下:

#Coding=utf-8 import os import codecs def writefile(fn,v_ls):   f = codecs.open(fn,'wb','utf-8')   for i in v_ls:     f.write(i + os.linesep)   f.close() def readfile(fn):   f = codecs.open(fn,'r','utf-8')   ls = [ line.strip() for line in f]   f.close()   for i in ls:     print i if __name__ == '__main__':   fn = u'11.txt'  ls = [u'1.python',u'2.how to pythonic',u'3.python cook',u'Python编程']   writefile(fn,ls)   readfile(fn)

希望本文所述对大家的Python程序设计有所帮助。

总结

以上是内存溢出为你收集整理的Python读写unicode文件的方法全部内容,希望文章能够帮你解决Python读写unicode文件的方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/1205677.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存