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

Python 文件I/O

时间:2014-12-26 16:02:52      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

打开文件并写内容:

# _*_ coding: gbk _*_
# 打开一个文件
fo = open("foo.txt", "wb")
fo.write (("Python isia great language.\nYeah its great!!\n").encode()) 
#注意上面的内容添加encode()否则报错:TypeError: ‘str‘ does not support the buffer interface
 
# 关闭打开的文件
fo.close()

打开文件并读内容:

fo = open("foo.txt", "r+")
str = fo.read(10);
print ("Read String is : ", str)
# 关闭打开的文件
fo.close()

http://www.w3cschool.cc/python/python-files-io.html

Python 文件I/O

标签:

原文地址:http://www.cnblogs.com/lwngreat/p/4186699.html

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