Duck, Duck, Code: An Introduction to Python’s Duck Typing


Python's Duck Typing
Picture by Writer | DALLE-3 & Canva

 

 

What’s Duck Typing?

 

Duck typing is an idea in programming typically associated to dynamic languages like Python, that emphasizes extra on the item’s conduct over its kind or class. If you use duck typing, you examine whether or not an object has sure strategies or attributes, relatively than checking for the precise class. The title comes from the saying,

 

If it seems to be like a duck, swims like a duck, and quacks like a duck, then it most likely is a duck.

 

Duck typing brings a number of benefits to programming in Python. It permits for extra versatile and reusable code and helps polymorphism, enabling completely different object varieties for use interchangeably so long as they supply the required interface. This leads to easier and extra concise code. Nonetheless, duck typing additionally has its disadvantages. One main disadvantage is the potential for runtime errors. Moreover, it may possibly make your code difficult to grasp.

 

Understanding Dynamic Conduct in Python

 

In dynamically typed languages, variable varieties usually are not fastened. As a substitute, they’re decided at runtime primarily based on the assigned values. In distinction, statically typed languages examine variable varieties at compile time. For example, for those who try to reassign a variable to a worth of a unique kind in static typing, you’ll encounter an error. Dynamic typing gives better flexibility in how variables and objects are used.

Let’s take into account the * Python operator; it behaves in another way primarily based on the kind of the item it’s used with. When used between two integers, it performs multiplication.

# Multiplying two integers
a = 5 * 3
print(a)  # Outputs: 15

 

When used with a string and an integer, it repeats the string. This demonstrates Python’s dynamic typing system and adaptable nature.

# Repeating a string
a="A" * 3
print(a)  # Outputs: AAA

 

 

How Duck Typing Works in Python?

 

Duck typing is most well-liked in dynamic languages as a result of it encourages a extra pure coding model. Builders can deal with designing interfaces primarily based on what objects can do. In duck typing, strategies outlined inside the category are given extra significance than the item itself. Let’s make clear this with a primary instance.

 

Instance No: 01

We’ve two lessons: Duck and Individual. Geese could make a quack sound, whereas individuals can communicate. Every class has a technique referred to as sound that prints their respective sounds. The operate make_it_sound takes any object that has a sound technique and calls it.

class Duck:
    def sound(self):
        print("Quack!")

class Individual:
    def sound(self):
        print("I am quacking like a duck!")

def make_it_sound(obj):
    obj.sound()

 

Now, let’s examine how we will use duck typing to work for this instance.

# Utilizing the Duck class
d = Duck()
make_it_sound(d)  # Output: Quack!

# Utilizing the Individual class
p = Individual()
make_it_sound(p)  # Output: I am quacking like a duck!

 

On this instance, each Duck and Individual lessons have a sound technique. It does not matter if the item is a Duck or a Individual; so long as it has a sound technique, the make_it_sound operate will work accurately.

Nonetheless, duck typing can result in runtime errors. For example, altering the title of the strategy sound within the class Individual to talk will increase an AttributeError on runtime. It’s because the operate make_it_sound expects all of the objects to have a sound operate.

class Duck:
    def sound(self):
        print("Quack!")

class Individual:
    def communicate(self):
        print("I am quacking like a duck!")

def make_it_sound(obj):
    obj.sound()

# Utilizing the Duck class
d = Duck()
make_it_sound(d)

# Utilizing the Individual class
p = Individual()
make_it_sound(p)

 

Output:

AttributeError: 'Individual' object has no attribute 'sound'

 

Instance No: 02

Let’s discover one other program that offers with calculating areas of various shapes with out worrying about their particular varieties. Every form (Rectangle, Circle, Triangle) has its personal class with a technique referred to as space to calculate its space.

class Rectangle:
    def __init__(self, width, peak):
        self.width = width
        self.peak = peak
        self.title = "Rectangle"

    def space(self):
        return self.width * self.peak

class Circle:
    def __init__(self, radius):
        self.radius = radius
        self.title = "Circle"

    def space(self):
        return 3.14 * self.radius * self.radius

    def circumference(self):
        return 2 * 3.14 * self.radius

class Triangle:
    def __init__(self, base, peak):
        self.base = base
        self.peak = peak
        self.title = "Triangle"

    def space(self):
        return 0.5 * self.base * self.peak

def print_areas(shapes):
    for form in shapes:
        print(f"Space of {form.title}: {form.space()}")
        if hasattr(form, 'circumference'):
            print(f"Circumference of the {form.title}: {form.circumference()}")

# Utilization
shapes = [
    Rectangle(4, 5),
    Circle(3),
    Triangle(6, 8)
]

print("Areas of various shapes:")
print_areas(shapes)

 

Output:

Areas of various shapes:
Space of Rectangle: 20
Space of Circle: 28.259999999999998
Circumference of the Circle: 18.84
Space of Triangle: 24.0

 

Within the above instance, we’ve got a print_areas operate that takes an inventory of shapes and prints their names together with their calculated areas. Discover that we need not examine the kind of every form explicitly earlier than calculating its space. As the strategy circumference is just current for the Circle class, it will get applied solely as soon as. This instance exhibits how duck typing can be utilized to jot down versatile code.

 

Last Ideas

 

Duck typing is a robust function of Python that makes your code extra dynamic and versatile, enabling you to jot down extra generic and adaptable packages. Whereas it brings many advantages, corresponding to flexibility and ease, it additionally requires cautious documentation and testing to keep away from potential errors.

 
 

Kanwal Mehreen Kanwal is a machine studying engineer and a technical author with a profound ardour for information science and the intersection of AI with drugs. She co-authored the e-book “Maximizing Productiveness with ChatGPT”. As a Google Technology Scholar 2022 for APAC, she champions range and educational excellence. She’s additionally acknowledged as a Teradata Range in Tech Scholar, Mitacs Globalink Analysis Scholar, and Harvard WeCode Scholar. Kanwal is an ardent advocate for change, having based FEMCodes to empower girls in STEM fields.

Recent Articles

Related Stories

Leave A Reply

Please enter your comment!
Please enter your name here

Stay on op - Ge the daily news in your inbox