您当前的位置:首页 > IT编程 > python
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:python读写删除复制文件操作方法详细实例总结

51自学网 2021-10-30 22:46:40
  python
这篇教程python读写删除复制文件操作方法详细实例总结写得很实用,希望能帮到您。

python读文件操作

1. read三种不同的方式

f = open('hello.txt') #'hello.txt'指的是文件的名称while True:  text = f.readline()  #读取文件指针指向的哪一行内容,然后指针下移  if text:    print(text)  else: #当文读到最后一行,三个空字符串    print(len(text))    breakf.close() #关闭文件,运行一下f = open("hello.txt")line_list = f.readlines() #一次性读取,以列表的形式表现出来print(type(line_list))for line in line_list:  print(line)f.close()f = open("hello.txt")s = f.read() #一次性读取所有内蓉,并以字符串的形式返回print(type(s))for line in s:  print(line,end=' ')f.close()

python写文件操作

2. writer的两种常用的基本方式

f = open('poet.txt','w',encoding='utf-8') #以写模式打开文件f.write('你好,python') #写入内容print("写入完毕,运行!")f.close()f = open("poet.txt",'a+')print(f.read())fruits = ['appple/n','banana/n','orange/n','watermelon/n']f.writelines(fruits)print('写入成功')f.close()

python删除文件操作

3. delete删除

import os,os.pathif os.path.exists("sd.txt"):  os.remove("sd.txt")    print("删除成功")else:  print('文件不存在')

删除相同文件的相同文件格式

import osfiles = os.listdir('.') #列出指定目录下的所有文件和子目录for filename in files:  point_index = filename.find(".") #获取'.‘在文件中出现的索引位置  if filename[point_index + 1:] == "txt": #判断当前文件的扩展名是否为'txt‘    os.remove(filename)  #删除文件

python复制文件操作

4. copy复制

第1种方法

srcFile = open("a.txt") #源文件destFile = open("a_copy.txt",'w') #目标文件destFile.write(srcFile.read()) #将源文件中读取的内容写入目标文件destFile.close()srcFile.close()print('复制完成')

第2种使用模块

with open("a.txt") as src,open("a_copy.txt",'w') as dest:  dest.write(src.read())print('复制成功啦!')

更差关于python读写删除复制文件操作方法详细实例请查看下面的相关链接


python字符串拼接的7种方法及性能比较详解
python反转(逆序)字符串的6种方法详细
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。