标签:字符串类 长度 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()
标签:字符串类 长度 text class color 关闭 open span int
原文地址:https://www.cnblogs.com/abel2020/p/13111026.html