当前位置: 移动技术网 > IT编程>脚本编程>Python > Python文件操作类操作实例详解

Python文件操作类操作实例详解

2019年03月28日  | 移动技术网IT编程  | 我要评论

来玩吧121224,爱情占线插曲,可慕茶

本文讲述了python文件操作类的操作实例,详细代码如下:

#!/usr/bin/env python
#!/usr/bin/env python 
#coding:utf-8 
# purpose: 文件操作类

#声明一个字符串文本 
poem=''' 
programming is fun测试 
when the work is done 
if you wanna make your work also fun: 
use python! 
''' 
#创建一个file类的实例,模式可以为:只读模式('r')、写模式('w')、追加模式('a') 
f=file('poem.txt','a') #open for 'w'riting 
f.write(poem) #写入文本到文件 write text to file 
f.close() #关闭文件 close the file

#默认是只读模式 
f=file('poem.txt') 
# if no mode is specified,'r'ead mode is assumed by default 
while true: 
line=f.readline() #读取文件的每一个行 
if len(line)==0: # zero length indicates eof 
break 
print line, #输出该行 
#注意,因为从文件读到的内容已经以换行符结尾,所以我们在输出的语句上使用逗号来消除自动换行。 
 
#notice comma to avoid automatic newline added by python 
f.close() #close the file

#帮助 
help(file)

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网