You have a User class. Now you need AdminUser — exactly like User, but with extra powers.
Copying the whole class is a maintenance nightmare. Change User and you have to remember to change the copy too.
**Inheritance** lets AdminUser inherit everything from User for free, then only add what's new.
```python
class AdminUser(User): # AdminUser gets all of User's stuff
`
Run this.