如何找到哪个文件是“启动器”Python

前端之家收集整理的这篇文章主要介绍了如何找到哪个文件是“启动器”Python前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

情况:我们知道下面将检查脚本是否已被直接调用.

if __name__ == '__main__':
    print "Called directly"

else:
    print "Imported by other python files"

问题:else子句只是一个通用子句,只要脚本没有直接调用就会运行.

问题:如果没有直接调用,有没有办法获取导入的文件

附加信息:下面是我想象代码的示例,只是我不知道放入什么< something>.

if __name__ == '__main__':
    print "Called directly"

elif 
最佳答案
试试这个:-

import sys
print sys.modules['__main__'].__file__

请参考更好的答案: – How to get filename of the __main__ module in Python?

原文链接:https://www.f2er.com/python/438836.html

猜你在找的Python相关文章