如何在python中打印当前执行文件的文件名?

时间:2013-04-24 12:50:55

标签: python file filenames

我目前正在运行一个脚本,执行时会执行多个其他python文件。我的目标是在python中打印当前正在执行的文件的文件名?

我尝试使用:

print __file__

但是引发了以下错误:

Traceback (most recent call last):
  File "C:\Users\qksr\Desktop\work\parsing text\testcase.py", line 32, in <module>
    print __file__
NameError: name '__file__' is not defined

那么我应该编写什么声明?

0 个答案:

没有答案