Guest User

Untitled

a guest
Aug 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. class Shape:
  2. squs = []
  3. def __init__(self, w, h):
  4. self.width = w
  5. self.height = h
  6. self.squs = squs
  7.  
  8. class Square(Shape):
  9. def go_list(self):
  10. super().__init__(self)
  11. return self.squs.append(self.width)
  12.  
  13. S1 = Square(20, 20)
  14. print(s1.go_list())
  15. S2 = Square(10, 10)
  16. print(s2.go_list())
Add Comment
Please, Sign In to add comment