[Solved] default and parameterized constructor along with setter and getters with Python
![[Solved] default and parameterized constructor along with setter and getters with Python [Solved] default and parameterized constructor along with setter and getters with Python](https://realcoder.techss24.com/wp-content/uploads/2022/06/Solved-default-and-parameterized-constructor-along-with-setter-and-getters-with-Python.png)
Create a class Stall, with following private attributes, Attribute Data Type __name str __detail str Use the __init__() method for initializing the Attributes. Use the following getter and setter methods in Stall class. Getter and Setter method names:set_name()get_name()set_detail()get_detail() Include default and parameterized constructors.…