Created
December 22, 2017 18:29
-
-
Save hsali/a5845d7db82397f082d221c9bb5f8d51 to your computer and use it in GitHub Desktop.
Python Hello World Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def hello_function(): | |
print "Hello World" | |
# This is comment. | |
# calling function | |
hello_function() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment