Python学习笔记之读取文件、OS模块、异常处理、with as语法示例

时间:2022-09-14 08:31:16

本文实例讲述了python学习笔记之读取文件、os模块、异常处理、with as语法。分享给大家供大家参考,具体如下:

文件读取

?
1
2
3
4
5
#读取文件
f = open("test.txt","r")
print(f.read()) #打印文件内容
#关闭文件
f.close()

获取文件绝对路径:os模块

os.environ["xxx"]  获取系统环境变量
os.getcwd 获取当前python脚本工作路径
os.getpid() 获取当前进程id
os.getppid() 获取父进程id

异常

?
1
2
3
4
5
6
7
8
9
10
#读取文件
f = none
try:
  f = open("test.txt", "r")
  print(f.read())
except baseexception:
  print("文件没有找到")
finally:
  if f is not none:
    f.close()

with as语法

?
1
2
3
4
#读取文件
with open("test.txt","r") as f:
  print(f.read())
  f.close()

希望本文所述对大家python程序设计有所帮助。

原文链接:https://blog.csdn.net/github_26672553/article/details/78526911