俭朴信封

文章
3
资源
0
加入时间
3年0月9天

python文件最基础的读写删除

python以下文件都是在相同目录下操作的1 read三种不同的方式f = open('hello.txt') #'hello.txt'指的是文件的名称while True: text = f.readline() #读取文件指针指向的哪一行内容,然后指针下移 if text: print(text) else...