编程语言
首页 > 编程语言> > python--基础4 (文件操作)

python--基础4 (文件操作)

作者:互联网

python 文件操作

步骤

#第一步:调用文件
f=open(r'D:\untitled\venv\Include\blacklist.txt', 'r', encoding='gbk')
#第二部:使用文件
print(f.readlines())
#第三部:关闭文件
f.close()

三种调用文件的路径的写法

open(r'D:\untitled\venv\Include\blacklist.txt')  #r --read  只读,代表' '内的字符串没有其他含义不进行转义
open('D:\\untitled\\venv\\Include\\blacklist.txt')
open('D:/untitled/venv/Include/blacklist.txt')

标签:Include,文件,venv,python,untitled,blacklist,操作,txt,open
来源: https://www.cnblogs.com/du-z/p/11027525.html