文件读取
#读取文件
f = open("test.txt","r")
print(f.read()) #打印文件内容
#关闭文件
f.close()
获取文件绝对路径:OS模块
os.environ["xxx"] 获取系统环境变量
os.getcwd 获取当前python脚本工作路径
os.getpid() 获取当前进程ID
os.getppid() 获取父进程ID
异常
#读取文件
f = None
try:
f = open("test.txt", "r")
print(f.read())
except BaseException:
print("文件没有找到")
finally:
if f is not None:
f.close()
with as语法
#读取文件
with open("test.txt","r") as f:
print(f.read())
f.close()
手机扫一扫
移动阅读更方便
你可能感兴趣的文章