Skip to content

Instantly share code, notes, and snippets.

@hguochen
Created December 26, 2013 06:23
Show Gist options
  • Save hguochen/8130424 to your computer and use it in GitHub Desktop.
Save hguochen/8130424 to your computer and use it in GitHub Desktop.
Python class template
class PythonClass:
def __init__(self):
"""Constructor"""
def method(self):
return "Hello World!"
anInstance = PythonClass()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment