Python获取当前文件名可以通过__file__或者sys.argv[0],下面以test.py文件为例.
test.py:(推荐学习:Python视频教程)
# -*- coding: utf-8 -*- # test.py import sys import os # 绝对路径 print(__file__) print(sys.argv[0]) # 文件名 print(os.path.basename(__file__)) print(os.path.basename(sys.argv[0]))
输出:
E:/Code/python3/EffectivePython/test.py E:/Code/python3/EffectivePython/test.py test.py test.py
__file__和sys.argv[0]都是当前文件的绝对路径,可以通过os.path.basename获得文件名。
更多Python相关技术文章,请访问Python教程栏目进行学习!
Atas ialah kandungan terperinci python 怎么获取文件名. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!