If you are a strong believer in statically typed languages, you won't want to read this post!
Sometimes it makes sense for a function to return multiple things. In such cases, it's common to just return them in a tuple: "return (count, new_obj)".
Sometimes you might want to return objects of different types based on whether an operation succeeded or not. For instance, if the operation was successful, you might return "(True, obj)". If it failed, you might return "(False, reason)". Often, you can use exceptions to handle this situation.
Sometimes you might want to return objects of different types based on arguments to the function. For instance, did the caller ask for the data in this format or that format?
Sometimes you'll want all of these variations at the same time. In such cases, I have found that using a dict for your return value is a good solution. For instance, here is a piece of a docstring that I wrote yesterday:
Sometimes it makes sense for a function to return multiple things. In such cases, it's common to just return them in a tuple: "return (count, new_obj)".
Sometimes you might want to return objects of different types based on whether an operation succeeded or not. For instance, if the operation was successful, you might return "(True, obj)". If it failed, you might return "(False, reason)". Often, you can use exceptions to handle this situation.
Sometimes you might want to return objects of different types based on arguments to the function. For instance, did the caller ask for the data in this format or that format?
Sometimes you'll want all of these variations at the same time. In such cases, I have found that using a dict for your return value is a good solution. For instance, here is a piece of a docstring that I wrote yesterday:
Return a dict (which I often call "response") with one or more of theThe calling code then looks like this:
following as appropriate:
successful
This is a bool to indicate success.
pylons_response
If unsuccessful, this is a Pylons response object that your
controller can return. It will contain an appropriate error
message for the user.
file_handle
Upon success, this is the file handle returned by
``urllib2.urlopen``. Per urllib2, it has an ``info()`` method
containing things like headers, etc.
xml_document
Upon success, if you set ``parse_xml_document=True``, this will
contain the parsed xml_document. I'll take care of parsing errors
with an appropriate pylons_response for you.
server_response = talk_to_server(parse_xml_document=True)If you read it out loud, the code "reads" easily, and yet it has the flexibility to contain all the different things I need to return. If I ask for something that isn't there, I get an exception, which is life as usual for a Python programmer.
if not server_response['successful']:
return server_response['pylons_response']
etag = server_response['file_handle'].info().getheader('ETag')
xml_document = server_response['xml_document']
Comments
1. slightly shorter syntax to access to the results:
server_response = talk(p)
xml_document = server_response.xml_document
# except if you give server_response a short name, then you might not even bother reassigning the xml_document value to its own variable name
2. clearer output when people print or inspect the result:
>>> print talk(p)
<server_response with some interesting summary of the pieces of the result>
>>> help(talk(p).xml_document) # might work if you use properties
Also, your (False, reason) example doesn't look very pythonic to me. I can't think of why you wouldn't use an exception, which itself might be annotated with some other attributes.
I return proper values or error values all the time. In a completely strongly typed a and checked manner. And with simpler syntax. Just pick your language.
(Mine is Haskell.)
If you are a strong believer in statically typed languages, you won't want to read this post!
Strong != Static
James Graves
When I said "If you are a strong believer in statically typed languages, you won't want to read this post!" I was referring to the fact that many Java programmers might get upset about the fact that I was using a dict in order to get around having to declare exactly what I was going to return.
Naturally, Maybe in Haskell is strongly typed, so it's a different ball of wax. Furthermore, in Haskell, it's quite natural to return a big list of stuff and do pattern matching on the return value.