Skip to content

Instantly share code, notes, and snippets.

@dineshsonachalam
Last active September 23, 2018 07:23
Show Gist options
  • Save dineshsonachalam/fb71a95360daf935404031eafe3ba180 to your computer and use it in GitHub Desktop.
Save dineshsonachalam/fb71a95360daf935404031eafe3ba180 to your computer and use it in GitHub Desktop.
temp = 6
def hello():
print("I am from first_module.py")
if __name__ == '__main__':
print("Executing as main program")
print("Value of __name__ is:",__name__)
hello()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment