All problems
MediumOOP
super() — call parent init
In `Manager(Employee)`, call the parent __init__ via super() and add a "team_size" attribute.
- #class
- #super
Sample input
Manager("Aarav", 5)Sample output
Aarav 5
class-super.py
Output
Press "Run code" to execute.
