2021
04-07
04-07
python读写删除复制文件操作方法详细实例总结
python读文件操作1.read三种不同的方式f=open('hello.txt')#'hello.txt'指的是文件的名称whileTrue:text=f.readline()#读取文件指针指向的哪一行内容,然后指针下移iftext:print(text)else:#当文读到最后一行,三个空字符串print(len(text))breakf.close()#关闭文件,运行一下f=open("hello.txt")line_list=f.readlines()#一次性读取,以列表的形式表现出来print(type(line_list))forlinein...
继续阅读 >