Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Comments on Understanding the `if __name__ == '__main__':` idiom
Post
Understanding the `if __name__ == '__main__':` idiom
I've seen many examples of Python scripts that include a line that says:
if __name__ == '__main__':
Sometimes the following block contains a bunch of code, but other times it just makes a single function call (like main()
), or some variant along the lines of
import sys
# other stuff here...
def main(args):
...
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))
I can see that this must be checking the value of some __name__
global variable - but that isn't defined anywhere in the code.
Why would there be such a variable, and why might it be equal to __main__
? What is the purpose of doing this check, and why might I include it in my own code?
1 comment thread