Guest User

Untitled

a guest
May 27th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class A:
  2. def calc(self):
  3. print('A', __class__, self)
  4.  
  5. class B(A):
  6. def calc(self):
  7. print('B', __class__, self)
  8. super().calc()
  9.  
  10. class C(B):
  11. pass
  12.  
  13. C().calc()
Add Comment
Please, Sign In to add comment