30 文件操作
Posted abel2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了30 文件操作相关的知识,希望对你有一定的参考价值。
#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 文件操作的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程
VSCode自定义代码片段15——git命令操作一个完整流程