Skip to content

Instantly share code, notes, and snippets.

@h2rd
Created November 22, 2012 23:20
Show Gist options
  • Select an option

  • Save h2rd/4133295 to your computer and use it in GitHub Desktop.

Select an option

Save h2rd/4133295 to your computer and use it in GitHub Desktop.
inheritance on python
class A:
def __init__(self):
print(u'конструктор класса A')
class B(A):
def __init__(self):
print(u'конструктор класса B')
A.__init__(self)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment