Search Results

3
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 …
1
vote

What’s the best way to implement an ‘enum’ in Python?

davidg recommends using dicts. I'd go one step further and use sets: months = set('January', 'February', ..., 'December') Now you can test whether a value matches …
1
vote

Using C in a shared multi-platform POSIX environment.

Launching a Python interpreter instance just to select the right binary to run would be much heavier than you need. I'd distribute a shell .rc file which provides aliases. In /shared/bin, …