Pot: namedtuple
For returning complex values from a method you have a few popular choices: Return a tuple with positional values. Those are very easy to unpack in Python and quite attractive because of that. Return a dictionary with the values. This can lead to slightly verbose accessing of the individual values. Return an object of some class you define. This required the definition of a class which can be too verbose for just a simple return value. Since Python 2.6 you have one additional tool: collections.namedtuple. They give you a very lightweight class but it’s a one-liner to define them. ...