相对路径
读文件
打印txt文件
f=open(".\data.txt","r",encoding="utf-8")
content=f.read()
print(content)
f.close()
with open(".\data.txt","r",encoding="utf-8") as f:content=f.read()print(content)
content=f.read(5)
即读取5字节。
文本文件必须使用缓冲
写入模式
“w”
如果文件不存在,程序会自动创建传入文件名的呢个文件,
如果呢个文件存在,就会把原本的文件内容清空。
with open(".\data.txt","w",encoding="utf-8") as f:f.write("Hello!\n")f.write("Yoooo!\n")
创建文件夹new_folder
import os
# 打开指定目录
path = "D:\my_document\shiyan"
os.chdir(path)
# 创建新文件夹
new_folder = "new_folder"
os.makedirs(new_folder)
创建txt文件并写入Hello World
import os
path = "D:\my_document\shiyan\\new_folder"
os.chdir(path)
file=open(path +"\\new_file.txt","w")
file.write("Hello World!")
file.close()
注:要有路径为D:\my_document\shiyan\new_folder
的文件
附加模式
“a”
表示附加内容,如果传入文件名不存在直接创建一个。
读写文件
“r+”
调用read和write都不会报错。