[Solved] Object-Oriented Programming / python3 Classes


If you want to create an instance, you can just do this

c=Chemise()

Then call whatever method you want

c.Affiche_info()

What you’re currently doing is creating another class that inherits from the first

solved Object-Oriented Programming / python3 Classes