Skip to content

Instantly share code, notes, and snippets.

@excid3
Created February 12, 2011 20:27
Show Gist options
  • Save excid3/824085 to your computer and use it in GitHub Desktop.
Save excid3/824085 to your computer and use it in GitHub Desktop.
class Person:
population = 0
def __init__(self, name):
self.name = name
Person.population += 1
c = Person("chris")
b = Person("bob")
print Person.population
# => 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment