python获取当前行/文件路径/文件目录
程序员文章站
2022-04-09 08:53:07
...
# -*- coding: utf-8 -*-
import os,sys
filePath=os.path.abspath(__file__)#当前文件路径
dirPath=os.path.dirname(os.path.abspath(__file__))#当前文件的父目录
rowNum=sys._getframe().f_lineno#当前行号
print("当前文件路径:",dirPath)
print("当前文件的父目录:",dirPath)
print("当前行号:",rowNum)