Guest User

Untitled

a guest
May 25th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. class A:
  4. def __init__(self):
  5. print "whatever"
  6.  
  7. class B(A):
  8. pass
  9.  
  10. B()
Add Comment
Please, Sign In to add comment