Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何知道我的脚本是作为独立脚本还是模块运行?因为如果它作为独立脚本运行,我需要在我的代码中做一些不同的事情。
你可以这样做:
if __name__ == '__main__': #stuff you want to do as a standalone script
解释器检查脚本是否是正在运行的主文件。如果它正在被导入,那么if块中的部分将不会执行。
if