Should I start a Python program with:
if__name__ == '__main__':
some code...
And if so, why? I saw it many times but don't have a clue about it.
|
1
|
Should I start a Python program with:
And if so, why? I saw it many times but don't have a clue about it.
|
|||
|
|
|
If your program is usable as a library but you also have a main program (e.g. to test the library), that construct lets others import the file as a library and not run your main program. If your program is named foo.py and you do "import foo" from another python file, Note that you do need to insert a space between if and _, and indent the main program:
|
||||
|
|
|
A better pattern is this:
This allows your code to be invoked by someone who imported it, while also making programs such as pychecker and pylint work. |
||
|
|
|
Guido Van Rossum suggests:
This way you can run |
||||
|
|
|
This is good practice. First, it clearly marks your module entry point (assuming you don't have any other executable code at toplevel - yuck). Second, it makes your module importable by other modules without executing, which some tools like code checkers, packagers etc. need to do. |
||
|
|