欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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)