Posted in Python onJune 04, 2019
本文实例讲述了Python学习笔记之读取文件、OS模块、异常处理、with as语法。分享给大家供大家参考,具体如下:
文件读取
#读取文件 f = open("test.txt","r") print(f.read()) #打印文件内容 #关闭文件 f.close()
获取文件绝对路径:OS模块
os.environ["xxx"]
获取系统环境变量os.getcwd
获取当前python脚本工作路径os.getpid()
获取当前进程IDos.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程序设计有所帮助。
Python学习笔记之读取文件、OS模块、异常处理、with as语法示例
- Author -
学习笔记666声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@