Skip to content

Instantly share code, notes, and snippets.

@mmcloughlin
Last active March 28, 2024 13:32
Show Gist options
  • Select an option

  • Save mmcloughlin/dc8cf1b7066fb1c58a0365c42cfa71df to your computer and use it in GitHub Desktop.

Select an option

Save mmcloughlin/dc8cf1b7066fb1c58a0365c42cfa71df to your computer and use it in GitHub Desktop.
Example of __name__ == '__main__' in Python
$ python manners.py
Hello World!
$ python other.py
Hello John!
def greet(who='World'):
print 'Hello {who}!'.format(who=who)
if __name__ == '__main__':
greet('World')
import manners
manners.greet('John')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment