码迷,mamicode.com
首页 > 其他好文 > 详细

文件的基本操作

时间:2020-03-13 19:02:41      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:lang   rap   white   操作文件   ble   LLC   property   style   com   

一、打开文件

1.路径分隔符转义问题

① open(r‘C:\a\nb\c\d.txt‘)

②open(‘C:/a/nb/c/d.txt‘)

2.打开方法

file1=open(r‘aaa/a.txt‘,mode=‘rt‘)
#这里的file1是一个变量名,占用应用程序内存空间

3.操作文件

应用程序对文件的读写请求都是在向操作系统发送系统调用,然后由操作系统控制硬盘把输入读入内存、或者写入硬盘。
# 读
file1=open(r‘aaa/a.txt‘,mode=‘rt‘)res=f.read()
print(type(res))

4.关闭文件

file1=open(r‘aaa/a.txt‘,mode=‘rt‘)res=f.read()
print(type(res))
f.close()

文件的基本操作

标签:lang   rap   white   操作文件   ble   LLC   property   style   com   

原文地址:https://www.cnblogs.com/bailongcaptain/p/12488055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!