Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class A:
  2. def print_hello(self):
  3. print("Hello")
  4.  
  5. class B(A):
  6. def print_world(self):
  7. print("World")
  8.  
  9. b = B()
  10. b.print_hello()
  11. b.print_world()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement