Challenge: Admin
Swipe to start coding
You have a User class from the last challenge.
The methods are corrected (User -> {self.username} in strings).
Let's define the Admin class!
- Define the
Adminclass inherited from theUserclass. - Define the
create_content()admin's method that prints the string:
f"{self.username} creates the content". - Define the
update_content()admin's method that prints the string:
f"{self.username} updates the content". - Define the
delete_content()admin's method that prints the string:
f"{self.username} deletes the content".
Note
Adminhas all the capabilities ofUserthat do not need to be reimplemented. This is an example of how inheritance makes our life easier.
Solution
Merci pour vos commentaires !
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Génial!
Completion taux amélioré à 2.78
Challenge: Admin
Glissez pour afficher le menu
Swipe to start coding
You have a User class from the last challenge.
The methods are corrected (User -> {self.username} in strings).
Let's define the Admin class!
- Define the
Adminclass inherited from theUserclass. - Define the
create_content()admin's method that prints the string:
f"{self.username} creates the content". - Define the
update_content()admin's method that prints the string:
f"{self.username} updates the content". - Define the
delete_content()admin's method that prints the string:
f"{self.username} deletes the content".
Note
Adminhas all the capabilities ofUserthat do not need to be reimplemented. This is an example of how inheritance makes our life easier.
Solution
Merci pour vos commentaires !
single