Search Results

2
votes

What’s the best way to return multiple values from a function in Python?

Throwing an exception for failure is one good way to proceed, and if you're returning a lot of different values, you can return a tuple. For the specific case you're citing, I often take an interm …