Guest User

Untitled

a guest
Jan 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class Employee:
  2. def __init__(self,r,c):
  3. self.r = r
  4. self.c = c
  5. print(r"Complex no =",self.r,"+",self.c,"i")
  6. print("")
  7.  
  8. class GE(Employee):
  9. def __init__(self,r,c,promotion="yes"):
  10. super(r,c).__init__()
  11. #self.promotion = "yes"
  12. print(self.promotion)
Add Comment
Please, Sign In to add comment