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