Skip to content

Instantly share code, notes, and snippets.

@denysonique
Created March 4, 2011 12:38
Show Gist options
  • Save denysonique/854557 to your computer and use it in GitHub Desktop.
Save denysonique/854557 to your computer and use it in GitHub Desktop.
class Greeter:
@staticmethod
def say_hi(name):
print ('Hi %s.') % name
#Output:
# Greeter.say_hi('Python')
# >> Hi Python.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment