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

1.Python3关于文件的操作

时间:2018-06-07 14:15:44      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:open   百度   inf   utf-8   代码   img   txt文本   简单的   简单   

1.写了一个简单的Demo,就是向txt文本写入内容,最初代码如下:

file = open("D:/Users/nancy/python.txt","wb")

file.write(‘Hello python file‘)

file.close()

  运行结果如下图

技术分享图片

 

2.后面百度了下,发现要用转码方式解决,具体代码如下:

file = open("D:/Users/nancy/python.txt","wb")

file.write(‘Hello python file‘.encode())

file.close()

  或者

file = open("D:/Users/nancy/python.txt","wb")

file.write(bytes("Hello python file","UTF-8"))

file.close()

  

1.Python3关于文件的操作

标签:open   百度   inf   utf-8   代码   img   txt文本   简单的   简单   

原文地址:https://www.cnblogs.com/android-it/p/9149632.html

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