<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gd="http://schemas.google.com/g/2005"><id>tag:blogger.com,1999:blog-7958828565254404797.post2062282687833990783..comments</id><updated>2024-12-13T03:11:35.450-08:00</updated><title type='text'>Comments on ListenData: Object Oriented Programming in Python : Learn by Examples</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.listendata.com/feeds/comments/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html'/><link rel="hub" href="http://pubsubhubbub.appspot.com/"/><author><name>Deepanshu Bhalla</name><uri>http://www.blogger.com/profile/09802839558125192674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXm_iOrXFR9Ls-mjtOci4qd1m1V1TXkkWJINuMy84-Axo5pNS6CG7oKwR7hfHHI3tB1yuz8W_qo9HK2Cw5fHfe_4cL_2DCf_LyoK9LMLicZojbNYgypIP-RXNsw1GsVhk/s100/pic.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>19</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-3809891269327570333</id><published>2022-07-20T22:45:30.631-07:00</published><updated>2022-07-20T22:45:30.631-07:00</updated><title type='text'>class Rectangle:&#xa;    def __init__(self,length,widt...</title><content type='html'>class Rectangle:&lt;br /&gt;    def __init__(self,length,width):&lt;br /&gt;        self.length = length&lt;br /&gt;        self.width = width&lt;br /&gt;        &lt;br /&gt;    def area(self):&lt;br /&gt;        return self.length * self.width&lt;br /&gt;        &lt;br /&gt;    def perimeter(self):&lt;br /&gt;        return 2*(self.length + self.width)&lt;br /&gt;        &lt;br /&gt;r1 = Rectangle(2,4)&lt;br /&gt;print (r1.area())&lt;br /&gt;print (r1.perimeter())</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/3809891269327570333'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/3809891269327570333'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1658382330631#c3809891269327570333' title=''/><author><name>TK</name><uri>https://www.blogger.com/profile/01995671612659399026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-876127378"/><gd:extendedProperty name="blogger.displayTime" value="July 20, 2022 at 10:45 PM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-2032929710603578628</id><published>2021-12-16T07:54:48.690-08:00</published><updated>2021-12-16T07:54:48.690-08:00</updated><title type='text'>class Rectangle:&#xa;    def __init__(self, length, wi...</title><content type='html'>class Rectangle:&lt;br /&gt;    def __init__(self, length, width):&lt;br /&gt;        self.length = length&lt;br /&gt;        self.width = width&lt;br /&gt;&lt;br /&gt;    def area_rectangle(self):&lt;br /&gt;        print(&amp;quot;Area of the rectangle is&amp;quot;, self.length*self.width)&lt;br /&gt;&lt;br /&gt;    def perimeter(self):&lt;br /&gt;        print(&amp;quot;The Perimeter of the rectangle is&amp;quot;, 2*(self.length + self.width))&lt;br /&gt;&lt;br /&gt;obj1=Rectangle(10,15)&lt;br /&gt;obj1.area_rectangle()&lt;br /&gt;obj1.perimeter()</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/2032929710603578628'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/2032929710603578628'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1639670088690#c2032929710603578628' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/02654880597850577390</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1871284888"/><gd:extendedProperty name="blogger.displayTime" value="December 16, 2021 at 7:54 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-5323623540748482706</id><published>2021-11-01T04:17:37.900-07:00</published><updated>2021-11-01T04:17:37.900-07:00</updated><title type='text'>Grande marao</title><content type='html'>Grande marao</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5323623540748482706'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5323623540748482706'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1635765457900#c5323623540748482706' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/15466360721429220259</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1743624137"/><gd:extendedProperty name="blogger.displayTime" value="November 1, 2021 at 4:17 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-1117686143931272819</id><published>2021-08-17T23:48:34.764-07:00</published><updated>2021-08-17T23:48:34.764-07:00</updated><title type='text'>class Car:&#xa;&#xa;    # class attribute&#xa;    wheels = 4&#xa;&#xa;...</title><content type='html'>class Car:&lt;br /&gt;&lt;br /&gt;    # class attribute&lt;br /&gt;    wheels = 4&lt;br /&gt;&lt;br /&gt;    # initializer / instance attributes&lt;br /&gt;    def __init__(self, color, style):&lt;br /&gt;        self.color = color&lt;br /&gt;        self.style = style&lt;br /&gt;&lt;br /&gt;    # method 1&lt;br /&gt;    def showDescription(self):&lt;br /&gt;        print(&amp;quot;This car is a&amp;quot;, self.color, self.style)&lt;br /&gt;&lt;br /&gt;    # method 2&lt;br /&gt;    def changeColor(self, color):&lt;br /&gt;        self.color = color&lt;br /&gt;&lt;br /&gt;c = Car(&amp;#39;Black&amp;#39;, &amp;#39;Sedan&amp;#39;)&lt;br /&gt;&lt;br /&gt;# call method 1&lt;br /&gt;c.showDescription()&lt;br /&gt;# Prints This car is a Black Sedan&lt;br /&gt;&lt;br /&gt;# call method 2 and set color&lt;br /&gt;c.changeColor(&amp;#39;White&amp;#39;)&lt;br /&gt;&lt;br /&gt;c.showDescription()&lt;br /&gt;# Prints This car is a White Sedan</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1117686143931272819'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1117686143931272819'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1629269314764#c1117686143931272819' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-6939909"/><gd:extendedProperty name="blogger.displayTime" value="August 17, 2021 at 11:48 PM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-626429685104713301</id><published>2021-08-05T04:37:17.864-07:00</published><updated>2021-08-05T04:37:17.864-07:00</updated><title type='text'>I can&amp;#39;t express my words how well it is useful...</title><content type='html'>I can&amp;#39;t express my words how well it is useful for me. I have my interview tmr on OOPS thank u for this </content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/626429685104713301'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/626429685104713301'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1628163437864#c626429685104713301' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/06896608265963813968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1967544254"/><gd:extendedProperty name="blogger.displayTime" value="August 5, 2021 at 4:37 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-6021989646967196909</id><published>2021-05-22T04:50:02.087-07:00</published><updated>2021-05-22T04:50:02.087-07:00</updated><title type='text'>amazing well explained really helpful for me to un...</title><content type='html'>amazing well explained really helpful for me to understand OOPs concepts in detail&lt;br /&gt;</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/6021989646967196909'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/6021989646967196909'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1621684202087#c6021989646967196909' title=''/><author><name>durga</name><uri>https://www.blogger.com/profile/00036624471211605529</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1125341367"/><gd:extendedProperty name="blogger.displayTime" value="May 22, 2021 at 4:50 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-69905423170386045</id><published>2021-05-14T23:22:53.576-07:00</published><updated>2021-05-14T23:22:53.576-07:00</updated><title type='text'>class Rectangle:&#xa;    def __init__(self, length, br...</title><content type='html'>class Rectangle:&lt;br /&gt;    def __init__(self, length, breadth):&lt;br /&gt;        self.length = length&lt;br /&gt;        self.breadth = breadth&lt;br /&gt;    def cal_Area(self):&lt;br /&gt;        return self.length * self.breadth&lt;br /&gt;    &lt;br /&gt;    def cal_Perimeter(self):&lt;br /&gt;        return 2*(self.length + self.breadth)&lt;br /&gt;&lt;br /&gt; rect1 = Rectangle(5,4)&lt;br /&gt;rect1.cal_Area()</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/69905423170386045'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/69905423170386045'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1621059773576#c69905423170386045' title=''/><author><name>Vivek@bepractical</name><uri>https://www.blogger.com/profile/11007733832992678954</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-710134738"/><gd:extendedProperty name="blogger.displayTime" value="May 14, 2021 at 11:22 PM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-4861783645709301790</id><published>2021-05-04T19:53:24.266-07:00</published><updated>2021-05-04T19:53:24.266-07:00</updated><title type='text'>In the empty space below, write the necessary code...</title><content type='html'>In the empty space below, write the necessary codes to : &lt;br /&gt;• Create a class named « cars ». &lt;br /&gt;• The class will contain the following public properties:  &lt;br /&gt;model, year and color. &lt;br /&gt;• The class must contain a function  &lt;br /&gt;made to output to screen the three properties. &lt;br /&gt;• Create a new object (instance) from the class you just created. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;answer ?</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/4861783645709301790'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/4861783645709301790'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1620183204266#c4861783645709301790' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/17102777742178267011</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1168089037"/><gd:extendedProperty name="blogger.displayTime" value="May 4, 2021 at 7:53 PM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-7078192186260012171</id><published>2020-12-02T07:31:27.087-08:00</published><updated>2020-12-02T07:31:27.087-08:00</updated><title type='text'>Consider School_bus, bus, Vehicle class, with max_...</title><content type='html'>Consider School_bus, bus, Vehicle class, with max_speed and mileage &lt;br /&gt;instance attributes, seeting_capacity and print bus_fees for the school &lt;br /&gt;student, if 1st to 10th standard, Rs.1000 per month and if 11th and 12th&lt;br /&gt;standard, Rs. 1500 per month. Write a pthon program using inheritance.</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/7078192186260012171'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/7078192186260012171'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1606923087087#c7078192186260012171' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/01426151541975682343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-451718484"/><gd:extendedProperty name="blogger.displayTime" value="December 2, 2020 at 7:31 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-5405541801682573059</id><published>2020-06-18T11:45:03.008-07:00</published><updated>2020-06-18T11:45:03.008-07:00</updated><title type='text'>This is really helpful. Thank you</title><content type='html'>This is really helpful. Thank you</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5405541801682573059'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5405541801682573059'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1592505903008#c5405541801682573059' title=''/><author><name>Yvette</name><uri>https://www.blogger.com/profile/14487747736587724802</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYsl2cEu-I3Ww4Fkgwpd4NtBqJ-OR2BDoWnO13rRPeG6B-tlum1dyKpYPh8nVEK509asXfxgA35_7iulnHvIbBlweWuAbWXDIza3XY2Imr7TLJDHdR7SqudPDHspziIw/s85/download.png'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1007073650"/><gd:extendedProperty name="blogger.displayTime" value="June 18, 2020 at 11:45 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-1054103537903417896</id><published>2020-02-28T13:44:24.584-08:00</published><updated>2020-02-28T13:44:24.584-08:00</updated><title type='text'>class Rectangle:&#xa;&#xa;    # Todo: has attributes lengt...</title><content type='html'>class Rectangle:&lt;br /&gt;&lt;br /&gt;    # Todo: has attributes length and width&lt;br /&gt;    def __init__(self, length, width):&lt;br /&gt;        self.length = length&lt;br /&gt;        self.width = width&lt;br /&gt;&lt;br /&gt;    @property&lt;br /&gt;    def length(self):&lt;br /&gt;        return self.__length&lt;br /&gt;&lt;br /&gt;    @property&lt;br /&gt;    def width(self):&lt;br /&gt;        return self.__width&lt;br /&gt;&lt;br /&gt;    @length.setter&lt;br /&gt;    def length(self, length):&lt;br /&gt;        if length &amp;lt;= 0:&lt;br /&gt;            self.__length = -length + 1&lt;br /&gt;        else:&lt;br /&gt;            self.__length = length&lt;br /&gt;&lt;br /&gt;    @width.setter&lt;br /&gt;    def width(self, width):&lt;br /&gt;        if width &amp;lt;= 0:&lt;br /&gt;            self.__width = -width + 1&lt;br /&gt;        else:&lt;br /&gt;            self.__width = width&lt;br /&gt;&lt;br /&gt;    # Todo: calculating area of rectangle&lt;br /&gt;    def cal_area(self):&lt;br /&gt;        return self.__length * self.__width&lt;br /&gt;&lt;br /&gt;    # Todo: calculating perimeter of rectangle&lt;br /&gt;    def cal_perimeter(self):&lt;br /&gt;        return 2 * (self.__length + self.__width)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if __name__ == &amp;#39;__main__&amp;#39;:&lt;br /&gt;    rec_1 = Rectangle(-10, -5)&lt;br /&gt;    print(&amp;quot;Rectangle 1&amp;quot;)&lt;br /&gt;    print(rec_1.length, &amp;quot;*&amp;quot;, rec_1.width)&lt;br /&gt;&lt;br /&gt;    rec_2 = Rectangle(10, 5)&lt;br /&gt;    area = rec_2.cal_area()&lt;br /&gt;    perimeter = rec_2.cal_perimeter()&lt;br /&gt;    print(&amp;quot;Rectangle 1&amp;quot;)&lt;br /&gt;    print(rec_2.length, &amp;quot;*&amp;quot;, rec_2.width)&lt;br /&gt;    print(&amp;quot;Area:&amp;quot;, area)&lt;br /&gt;    print(&amp;quot;perimeter:&amp;quot;, perimeter)&lt;br /&gt;&lt;br /&gt;</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1054103537903417896'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1054103537903417896'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1582926264584#c1054103537903417896' title=''/><author><name>Chandler_UoS</name><uri>https://www.blogger.com/profile/03967636519118789765</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-334345183"/><gd:extendedProperty name="blogger.displayTime" value="February 28, 2020 at 1:44 PM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-91748562041792788</id><published>2019-12-20T01:43:48.248-08:00</published><updated>2019-12-20T01:43:48.248-08:00</updated><title type='text'>Succinctly written! This certainly is a solid boot...</title><content type='html'>Succinctly written! This certainly is a solid boot-camp course for a Noob like me in the wonderful world of python programming...</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/91748562041792788'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/91748562041792788'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1576835028248#c91748562041792788' title=''/><author><name>smrtinker</name><uri>https://www.blogger.com/profile/06055190754577721705</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-840351920"/><gd:extendedProperty name="blogger.displayTime" value="December 20, 2019 at 1:43 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-1370056152329265252</id><published>2019-09-03T10:21:27.058-07:00</published><updated>2019-09-03T10:21:27.058-07:00</updated><title type='text'>class Rectangle:&#xa; def __init__(self, length, width...</title><content type='html'>class Rectangle:&lt;br /&gt; def __init__(self, length, width):&lt;br /&gt;  self.length = length&lt;br /&gt;  self.width = width&lt;br /&gt;&lt;br /&gt; def get_area(self):&lt;br /&gt;  return self.length * self.width&lt;br /&gt;&lt;br /&gt; def get_perimeter(self):&lt;br /&gt;  return 2 * (self.length + self.width)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;r1 = Rectangle(10, 20)&lt;br /&gt;print(r1.get_area())&lt;br /&gt;print(r1.get_perimeter())</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1370056152329265252'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1370056152329265252'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1567531287058#c1370056152329265252' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-6939909"/><gd:extendedProperty name="blogger.displayTime" value="September 3, 2019 at 10:21 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-5450839124181260222</id><published>2019-08-14T06:58:16.577-07:00</published><updated>2019-08-14T06:58:16.577-07:00</updated><title type='text'>Good </title><content type='html'>Good </content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5450839124181260222'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5450839124181260222'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1565791096577#c5450839124181260222' title=''/><author><name>Dinesh pal</name><uri>https://www.blogger.com/profile/14228039758534936400</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKNYBJ-ba3ei-GkD6DBvFNZG5L8_SXhLZpuONaaKaLUV3esXpICqs7QVykpPqqpDV5nlUnN-WDpeEWBCLws18dg2MYl6R-4_maDMpL9nkG7EUv36UDTEDEZzA-8qbigg/s101/IMG20181019205633.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1023522938"/><gd:extendedProperty name="blogger.displayTime" value="August 14, 2019 at 6:58 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-7315688168298305182</id><published>2019-08-14T05:06:28.378-07:00</published><updated>2019-08-14T05:06:28.378-07:00</updated><title type='text'>Super </title><content type='html'>Super </content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/7315688168298305182'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/7315688168298305182'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1565784388378#c7315688168298305182' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/17096914601353936081</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-851620864"/><gd:extendedProperty name="blogger.displayTime" value="August 14, 2019 at 5:06 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-6866987805967717532</id><published>2019-08-13T03:59:34.741-07:00</published><updated>2019-08-13T03:59:34.741-07:00</updated><title type='text'>Good. Go through the above article and learn :)</title><content type='html'>Good. Go through the above article and learn :)</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/6866987805967717532'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/6866987805967717532'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1565693974741#c6866987805967717532' title=''/><link rel='related' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1240087334010618395'/><author><name>Deepanshu Bhalla</name><uri>https://www.blogger.com/profile/09802839558125192674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXm_iOrXFR9Ls-mjtOci4qd1m1V1TXkkWJINuMy84-Axo5pNS6CG7oKwR7hfHHI3tB1yuz8W_qo9HK2Cw5fHfe_4cL_2DCf_LyoK9LMLicZojbNYgypIP-RXNsw1GsVhk/s100/pic.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-966036103"/><gd:extendedProperty name="blogger.displayTime" value="August 13, 2019 at 3:59 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-5962942044707452204</id><published>2019-08-12T11:23:29.951-07:00</published><updated>2019-08-12T11:23:29.951-07:00</updated><title type='text'>Well explained in details waiting for more</title><content type='html'>Well explained in details waiting for more</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5962942044707452204'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/5962942044707452204'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1565634209951#c5962942044707452204' title=''/><author><name>Shirke</name><uri>https://www.blogger.com/profile/08296508878027060082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-47187018"/><gd:extendedProperty name="blogger.displayTime" value="August 12, 2019 at 11:23 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-1240087334010618395</id><published>2019-08-12T06:39:34.595-07:00</published><updated>2019-08-12T06:39:34.595-07:00</updated><title type='text'>I want to learn...</title><content type='html'>I want to learn...</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1240087334010618395'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/1240087334010618395'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1565617174595#c1240087334010618395' title=''/><author><name>Avash Puitandy</name><uri>https://www.blogger.com/profile/07640129226085068240</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-256497842"/><gd:extendedProperty name="blogger.displayTime" value="August 12, 2019 at 6:39 AM"/></entry><entry><id>tag:blogger.com,1999:blog-7958828565254404797.post-7635223992332883630</id><published>2019-08-12T01:20:12.605-07:00</published><updated>2019-08-12T01:20:12.605-07:00</updated><title type='text'>I want to learn ...&#xa;</title><content type='html'>I want to learn ...&lt;br /&gt;</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/7635223992332883630'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7958828565254404797/2062282687833990783/comments/default/7635223992332883630'/><link rel='alternate' type='text/html' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html?showComment=1565598012605#c7635223992332883630' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/07814112183910573629</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.listendata.com/2019/08/python-object-oriented-programming.html' ref='tag:blogger.com,1999:blog-7958828565254404797.post-2062282687833990783' source='http://www.blogger.com/feeds/7958828565254404797/posts/default/2062282687833990783' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-475302921"/><gd:extendedProperty name="blogger.displayTime" value="August 12, 2019 at 1:20 AM"/></entry></feed>