绝对路径:从盘符开始的路径
相对路径:从当前目录(工作目录)的路径
#获取当前工作目录
import os
print(os.getcwd())
文件对象=open(文件名,访问模式)
f = open("mypython.txt","w")
f.close()
Python有垃圾回收机制,会自动关闭不再使用的文件
在对文件进行了写入操作后,应该立刻关闭文件,以避免意外事故造成的错误
f = open(r"D:\code1\pythontest\mypython.txt")
print(f.read())
f.close()
f = open(r"D:\code1\pythontest\mypython.txt")
print(f.readline())
print(f.readline())
f.close()
文件对象. read(字节数)
文件对象. readline(字节数)
f = open(r"D:\code1\pythontest\mypython.txt")
print(f.read(8))
print(f.readline(10))
f.close()
#末尾追加
f = open(r"D:\code1\pythontest\mypython.txt","a")
f.write("Z_W_H_")
f.close()
f = open(r"D:\code1\pythontest\mypython.txt")
print(f.read())
f.close()
f = open(r"D:\code1\pythontest\mypython.txt","w")
f.write("Z_W_H_")
f.close()
f = open(r"D:\code1\pythontest\mypython.txt")
print(f.read())
f.close()