Skip to content

Instantly share code, notes, and snippets.

@santoshpy
Created February 20, 2019 07:33
Show Gist options
  • Save santoshpy/b71d413094354dca3b7bb26c54a9085e to your computer and use it in GitHub Desktop.
Save santoshpy/b71d413094354dca3b7bb26c54a9085e to your computer and use it in GitHub Desktop.
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment