Skip to content

Instantly share code, notes, and snippets.

@odragora
Created January 30, 2016 19:57
Show Gist options
  • Save odragora/aeef32be64abdc14f8d0 to your computer and use it in GitHub Desktop.
Save odragora/aeef32be64abdc14f8d0 to your computer and use it in GitHub Desktop.
class Person():
def __init__(self, *args, **kwargs):
self.age = 35
self.name = 'Alex'
alex = Person()
print alex.name
print alex.age
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment