本文实例讲述了Python学习笔记之读取文件、OS模块、异常处理、withas语法。分享给大家供大
本文实例讲述了Python学习笔记之读取文件、OS模块、异常处理、with as语法。分享给大家供大家参考,具体如下:
文件读取
#读取文件
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()
Python
读取文件
OS模块
异常处理
with
as语法