我目前正在运行一个脚本,执行时会执行多个其他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
那么我应该编写什么声明?