Skip to content

Instantly share code, notes, and snippets.

@gabrielhpugliese
Created September 3, 2012 17:52
Show Gist options
  • Save gabrielhpugliese/3611341 to your computer and use it in GitHub Desktop.
Save gabrielhpugliese/3611341 to your computer and use it in GitHub Desktop.
class Ze():
attr1 = 'viadinho'
def __init__(self):
# Isso e um construtor
self.attr2 = 'gayzola'
def canta_hino(self, time='palmeiras'):
if(time == 'palmeiras'):
return 'Quando surge...'
return 'Nem'
def peida(self):
return 'Pffff'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment