21
votes
What is the single most influential book every programmer should read?
Robert M. Pirsig's Zen and the Art of Motorcycle Maintenance has a little section near the end about Gumption Traps. That's the best advice I've ever read on how to debug code or solve pr …
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 …
