码迷,mamicode.com
首页 > 其他好文 > 详细

30 文件操作

时间:2020-06-13 00:12:00      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:字符串类   长度   text   class   color   关闭   open   span   int   

#1 打开文件,open 函数
file1 = open("test2.py")

#2读取文件,read
text = file1.read()    #返回字符串类型

print(text)

#3 关闭文件
file1.close()

 

#
file1 = open("test2.py")


text = file1.read()
print(text)
print(len(text))    #打印读取的长度

print("-"*50)

text = file1.read()
print(text)
print(len(text))    


file1.close()

执行结果:   第二次什么也没读到,因为第一次read 完成,文件指针在最后面

test
test
test
14
--------------------------------------------------

0   

 

大文件,循环读取一行:

#
file1 = open("test2.py")

while True:
    text = file1.readline()

    
    #if not text:
    #if text == ‘‘:
    if  len(text)== 0:
        break

    print(text)

file1.close()

 

30 文件操作

标签:字符串类   长度   text   class   color   关闭   open   span   int   

原文地址:https://www.cnblogs.com/abel2020/p/13111026.html

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