What is the __main__.py file for, what sort of code should I put into it, and when should I have one?
|
|
||||
|
|
|
Often, a Python program is run by naming a .py file on the command line:
You can also create a directory or zipfile full of code, and include a
You'll have to decide for yourself whether your application could benefit from being executed like this. |
|||||||
|
|
If your script is a directory or ZIP file rather than a single python file, |
|||
|
|
|
and the contents of
Then if we were to run So the |
|||
|
|