Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is this duck-typing in Python?

Here is some Ruby code:

class Duck
  def help
    puts "Quaaaaaack!"
  end
end

class Person
  def help
    puts "Heeeelp!"
  end
end

def InTheForest x
  x.help
end

donald = Duck.new
john = Person.new
print "Donald in the forest: "
InTheForest donald
print "John in the forest: "
InTheForest john

And, I translated it to Python:

import sys

class Duck:
        def help():
            print("Quaaaaaack!")

class Person:
        def help():
            print("Heeeelp!")

def InTheForest(x):
    x.help()

donald = Duck()
john = Person()
sys.stdout.write("Donald in the forest: ")
InTheForest(donald)
sys.stdout.write("John in the forest: ")
InTheForest(john)

The result is the same. Does this mean my Python code is using duck-typing? I couldn't find a duck-typing example, so I thought there may be no duck-typing in Python. There is code in Wikipedia, but I couldn't understand it.

like image 481
a1204773 Avatar asked Jun 10 '13 16:06

a1204773


People also ask

Does Python have duck typing?

Python is a duck typing language. It means the data types of variables can change as long as the syntax is compatible. Python is also a dynamic programming language.

Why Python is a duck typing language?

Since Python is a dynamically typed language, we don't have to specify the data type of the input arguments in a function. Now if we call the same function twice with a different object, the action taken will be dependent to the data type of the input object. 'Quack!

Where is use duck typing in Python?

The main reason for using duck typing is to provide support for dynamic typing in Python programming. In Python, we don't need to specify the variable's data type and we can reassign the different data type values to same variable in further code. Let's see the following example.

Is Typecript duck typing?

TypeScript uses the duck-typing method to compare one object with other objects by checking that both objects have the same type matching names or not. It means we cannot change the signature of a variable.


2 Answers

The code does not show the whole story. Duck typing is about trying something and handling exceptions if they occur. As long it quacks, treat it like a duck, otherwise, treat it differently.

try:
    dog.quack()
except AttributeError:
    dog.woof()

This behavior is explained at the top of the wikipedia Duck_typing article following a description of a non-duck-typed language:

In a duck-typed language, the equivalent function would take an object of any type and call that object's walk and quack methods. If the object does not have the methods that are called then the function signals a run-time error. If the object does have the methods, then they are executed no matter the type of the object, evoking the quotation and hence the name of this form of typing.

For your example:

class Person:
    def help(self):
        print("Heeeelp!")

class Duck:
    def help(self):
        print("Quaaaaaack!")

class SomethingElse:
    pass

def InTheForest(x):
    x.help()

donald = Duck()
john = Person()
who = SomethingElse()

for thing in [donald, john, who]:
    try:
        InTheForest(thing)
    except AttributeError:
        print 'Meeowww!'

output:

Quaaaaaack!
Heeeelp!
Meeowww!
like image 143
dansalmo Avatar answered Oct 05 '22 05:10

dansalmo


Yes, this is duck typing, which Python code can (and often does) use.

http://en.wikipedia.org/wiki/Duck_typing#In_Python

Further up on the page there is a more complete example in Python:

class Duck:
    def quack(self):
        print("Quaaaaaack!")
    def feathers(self):
        print("The duck has white and gray feathers.")

class Person:
    def quack(self):
        print("The person imitates a duck.")
    def feathers(self):
        print("The person takes a feather from the ground and shows it.")
    def name(self):
        print("John Smith")

def in_the_forest(duck):
    duck.quack()
    duck.feathers()

def game():
    donald = Duck()
    john = Person()
    in_the_forest(donald)
    in_the_forest(john)

game()
like image 41
Andrew Clark Avatar answered Oct 05 '22 07:10

Andrew Clark