Python文件操作类

新的一年不知不觉就来到了,新的一年新的气象!先祝博客园的园友们技术越来越牛,工资越来越高!新的一年,一定要为自己定几个目标,得好好规划规划自己的程序生涯,我的爱好挺多的,lucene,hubbledotnet,wcf,memached,爬虫,android,python……,喜欢结交有志同道合的朋友们,如果有志同道合的童靴能够互相学习互相进步!新的一年让我们朝着自己的梦想及目标而努力吧!

 

#!/usr/bin/env python

#!/usr/bin/env python

#coding:utf-8

# Author:   酷酷(QQ:357732053)

# Purpose: 文件操作类

# Created: 2011/1/1



#声明一个字符串文本

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)

    

 

你可能感兴趣的:(python)