Skip to content

Instantly share code, notes, and snippets.

@payoung
payoung / inheritance.py
Last active December 18, 2015 23:49 — forked from eleddy/inheritance.py
#!/usr/bin/python
class Toy(object):
inventory = 0
def __init__(self, price, name, quantity):
self.price = price
self.name = name
self.quantity = quantity