标签:lang rap white 操作文件 ble LLC property style com
1.路径分隔符转义问题
① open(r‘C:\a\nb\c\d.txt‘)
②open(‘C:/a/nb/c/d.txt‘)
file1=open(r‘aaa/a.txt‘,mode=‘rt‘)
#这里的file1是一个变量名,占用应用程序内存空间
应用程序对文件的读写请求都是在向操作系统发送系统调用,然后由操作系统控制硬盘把输入读入内存、或者写入硬盘。
# 读
file1=open(r‘aaa/a.txt‘,mode=‘rt‘)res=f.read()
print(type(res))
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