views:

6300

answers:

5

As this says:

http://mail.python.org/pipermail/python-list/2003-May/206149.html

Function overloading is absent in Python.

As far as I feel this a big handicap since its also an OO language. Initially I found that unable to differentiate between the argument types was difficult but the dynamic nature of Python made it easy (e.g. list, tuples, strings are much similar).

However counting the number of arguments passed and then doing the job is like an overkill.

+2  A: 

Oftentimes you see the suggestion use use keyword arguments, with default values, instead. Look into that.

unwind
+1  A: 

you don't need function overloading, as you have the *args and **kwargs arguments.

The fact is that function overloading is based on the idea that passing different types you will execute different code. If you have a dynamically typed language like python, you should not distinguish by type, but you should deal with interfaces and their compliance with the code you write.

For example, if you have code that can handle either an integer, or a list of integers, you can try iterating on it and if you are not able to, then you assume it's an integer and go forward. Of course it could be a float, but as far as the behavior is concerned, if a float and an int appear to be the same, then they can be interchanged.

Stefano Borini
+3  A: 

You can pass a mutable container datatype into a function, it can contain anything you want.

If you need a different functionality, name the functions differently, or if U need a same interface, just write a interface function (or method) that calls the functions appropriately based on the data received.

It took a while to me to get adjusted to this coming from Java, But it really isnt a "big handicap"

Lakshman Prasad
+6  A: 

Now, unless you're trying to write C++ code using Python syntax, what would you need overloading for?

I think it's exactly opposite, overloading is hack-work for handicapped languages, which need statically typed function arguments and exact number of them. In Python you have keyword argument, you have *args and **kwargs.

See for example: http://stackoverflow.com/questions/682504/what-is-a-clean-pythonic-way-to-have-multiple-constructors-in-python

vartec
+2  A: 

As unwind noted, keyword arguments with default values can go a long way.

I'll also state that in my opinion, it goes against the spirit of Python to worry a lot about what types are passed into methods. In Python, I think it's more accepted to use duck typing -- asking what an object can do, rather than what it is.

Thus, if your method may accept a string or a tuple, you might do something like this:

def print_names(names):
    """Takes a space-delimited string or an iterable"""
    try:
        for name in names.split(): # string case
            print name
    except AttributeError:
        for name in names:
            print name

Then you could do either of these:

print_names("Ryan Billy")
print_names(("Ryan", "Billy"))

Although an API like that sometimes indicates a design problem.

Ryan Ginstrom