gpt4 book ai didi

python - 为什么在Python中使用 "if __name__==' __main_ _': main()"而不是简单的 "main()"?

转载 作者:太空宇宙 更新时间:2023-11-03 18:50:23 25 4
gpt4 key购买 nike

另外,为什么我们要使用下划线?毕竟我将main方法定义为main() ,而不是 __main__() .

最佳答案

When the Python interpreter reads a source file, it executes all of the code found in it. Before executing the code, it will define a few special variables. For example, if the python interpreter is running that module (the source file) as the main program, it sets the special __name__ variable to have a value "__main__". If this file is being imported from another module, __name__ will be set to the module's name.

In the case of your script, let's assume that it's executing as the main function, e.g. you said something like

python threading_example.py

on the command line. After setting up the special variables, it will execute the import statement and load those modules. It will then evaluate the def block, creating a function object and creating a variable called myfunction that points to the function object. It will then read the if statement and see that __name__ does equal "__main__", so it will execute the block shown there.

One of the reasons for doing this is that sometimes you write a module (a .py file) where it can be executed directly. Alternatively, it can also be imported and used in another module. By doing the main check, you can have that code only execute when you want to run the module as a program and not have it execute when someone just wants to import your module and call your functions themselves.

取自这里:What does if __name__ == "__main__": do?

关于python - 为什么在Python中使用 "if __name__==' __main_ _': main()"而不是简单的 "main()"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18506274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com