python文件最基础的读写删除
2018-06-18 02:48:36来源:未知 阅读 ()
python
以下文件都是在相同目录下操作的
1 read三种不同的方式
f = open('hello.txt') #'hello.txt'指的是文件的名称 while True: text = f.readline() #读取文件指针指向的哪一行内容,然后指针下移 if text: print(text) else: #当文读到最后一行,三个空字符串 print(len(text)) break f.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()
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()
3,delete
import os,os.path if os.path.exists("sd.txt"): os.remove("sd.txt") print("删除成功") else: print('文件不存在') 删除相同文件的相同文件格式 import os files = os.listdir('.') #列出指定目录下的所有文件和子目录 for filename in files: point_index = filename.find(".") #获取’.‘在文件中出现的索引位置 if filename[point_index + 1:] == "txt": #判断当前文件的扩展名是否为’txt‘ os.remove(filename) #删除文件
5,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('复制成功啦!')
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:新的一天
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash