27.5. __main__ — Top-level script environment

This module represents the (otherwise anonymous) scope in which the interpreter’s main program executes — commands read either from standard input, from a script file, or from an interactive prompt. 惯用的“条件脚本”节中的这种环境导致脚本运行:

if __name__ == "__main__":
    main()

Previous topic

27.4. future_builtins — Python 3 builtins

Next topic

27.6. warnings — Warning control

This Page