Found 34486 Articles for Programming

What does the cmp() function do in Python Object Oriented Programming?

Rajendra Dharmkar
Updated on 15-Jun-2020 09:11:48

314 Views

The cmp() functionThe cmp(x, y) function compares the values of two arguments x and y −cmp(x, y)The return value is −A negative number if x is less than y.Zero if x is equal to y.A positive number if x is greater than y.The built-in cmp() function will typically return only the values -1, 0, or 1. However, there are other places that expect functions with the same calling sequence, and those functions may return other values. It is best to observe only the sign of the result.>>> cmp(2, 8) -1 >>> cmp(6, 6) 0 >>> cmp(4, 1) 1 >>> cmp('stackexchange', ... Read More

What does the str() function do in Python Object Oriented Programming?

Rajendra Dharmkar
Updated on 15-Jun-2020 09:02:09

355 Views

The __str__ method__str__ is a special method, like __init__, that returns a 'informal' string representation of an object. It is useful in debugging.Consider the following code that uses the __str__ methodclass Time:     def __str__(self):         return '%.2d:%.2d:%.2d' % (self.hour, self.minute, self.second)When we print an object, Python invokes the str method −>>> time = Time(7, 36) >>> print time 07:36:00

How to use JavaScript to check if a number has a decimal place or it’s a whole number?

Abhishek
Updated on 25-Nov-2022 07:05:37

18K+ Views

In this tutorial, we will discuss how we can check for a number whether it is a decimal number or a whole number using the JavaScript. In JavaScript, we can use in−built methods as well as the user defined methods to check for a number if it has a decimal place or it is a whole number. We will discuss about all those methods in details. Let us see what are those methods that we can use to accomplish this task. Following methods are very useful to check for a number if it is decimal or whole number − ... Read More

What does the repr() function do in Python Object Oriented Programming?

Rajendra Dharmkar
Updated on 15-Jun-2020 08:41:23

553 Views

The official Python documentation says __repr__() is used to compute the “official” string representation of an object. The repr() built-in function uses __repr__() to display the object. __repr__()  returns a printable representation of the object, one of the ways possible to create this object.  __repr__() is more useful for developers while __str__() is for end users.ExampleThe following code shows how __repr__() is used.class Point:    def __init__(self, x, y):      self.x, self.y = x, y    def __repr__(self):      return 'Point(x=%s, y=%s)' % (self.x, self.y) p = Point(3, 4) print pOutputThis gives ... Read More

How does the destructor method __del__() work in Python?

Rajendra Dharmkar
Updated on 30-Jul-2019 22:30:21

518 Views

The __del__() method is a known as a destructor method. It is called when an object is garbage collected which happens after all references to the object have been deleted.In a simple case this could be right after you delete a variable like del x or, if x is a local variable, after the function ends. In particular, unless there are circular references, CPython  which is the standard Python implementation will garbage collect immediately.The only property of Python garbage collection is that it happens after all references have been deleted, so this might not necessarily happen right after and even ... Read More

How does constructor method __init__ work in Python?

Rajendra Dharmkar
Updated on 16-Jun-2020 08:02:16

1K+ Views

__init__ "__init__" is a reserved method in python classes. It is known as a constructor in OOP concepts. This method called when an object is created from the class and it allows the class to initialize the attributes of a class.How can we use  "__init__ " ?Let's consider that we are creating a class named Car. Car can have attributes like "color", "model", "speed" etc. and methods like "start", "accelarate", "change_ gear" and so on.Exampleclass Car(object):        def __init__(self, model, color, speed):              self.color = color              self.speed = ... Read More

How do I make a subclass from a super class in Python?

Sarika Singh
Updated on 23-Nov-2022 08:14:02

3K+ Views

In this article we are going to discuss how to create subclass from a super class in Python. Before proceeding further let us understand what is a class and a super class. A class is a user-defined template or prototype from which objects are made. Classes offer a way to bundle together functionality and data. The ability to create new instances of an object type is made possible by the production of a new class. Each instance of a class may have attributes connected to it to preserve its state. Class instances may also contain methods for changing their state ... Read More

Introduction to Classes and Inheritance in Python

Rajendra Dharmkar
Updated on 13-Jun-2020 14:01:31

394 Views

Object-oriented programming creates reusable patterns of code to prevent code redundancy in projects. One way that recyclable code is created is through inheritance, when one subclass leverages code from another base class.Inheritance is when a class uses code written within another class.Classes called child classes or subclasses inherit methods and variables from parent classes or base classes.Because the Child subclass is inheriting from the Parent base class, the Child class can reuse the code of Parent, allowing the programmer to use fewer lines of code and decrease redundancy.Derived classes are declared much like their parent class; however, a list of ... Read More

How I can check if class attribute was defined or derived in given class in Python?

Rajendra Dharmkar
Updated on 16-Jun-2020 07:54:05

249 Views

The code below shows the if the attribute 'foo' was defined or derived in the classes A and B.Exampleclass A:     foo = 1 class B(A):     pass print A.__dict__ #We see that the attribute foo is there in __dict__ of class A. So foo is defined in class A. print hasattr(A, 'foo') #We see that class A has the attribute but it is defined. print B.__dict__ #We see that the attribute foo is not there in __dict__ of class B. So foo is not defined in class B print hasattr(B, 'foo') #We see that class B has ... Read More

How I can check if A is superclass of B in Python?

Rajendra Dharmkar
Updated on 20-Feb-2020 12:48:09

265 Views

We have the classes A and B defined as follows −class A(object): pass class B(A): passExampleA can be proved to be a super class of B in two ways as followsclass A(object):pass class B(A):pass print issubclass(B, A) # Here we use the issubclass() method to check if B is subclass of A print B.__bases__ # Here we check the base classes or super classes of BOutputThis gives the outputTrue (,)

Advertisements