Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. class Parent(object):
  2.     x = 1
  3.  
  4. class Child1(Parent):
  5.     pass
  6.  
  7. class Child2(Parent):
  8.     pass
  9.  
  10. print Parent.x, Child1.x, Child2.x
  11. Child1.x = 2
  12. print Parent.x, Child1.x, Child2.x
  13. Parent.x = 3
  14. print Parent.x, Child1.x, Child2.x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement