Always wanted a switch coding style. Now, offered one i am having second thoughts introspecting if my code improves for readability if I use one. I think on balance yes. I've always like this approach to a single value or expression gating choices.
Also wondering about the degenerate forms of fall through alternates, so it's a stack of code optionally run.
There is another link to c code switches and duffs device in hn recently
Switch statements can work well from a readability standpoint such as the HTTP error example they use. However, I almost feel it is more Pythonic to use a dictionary instead, collapsing the function into:
4 comments
[ 3.1 ms ] story [ 16.3 ms ] threadI think the latter would help a lot with error handling in particular, not to mention defining protocols.
Also wondering about the degenerate forms of fall through alternates, so it's a stack of code optionally run.
There is another link to c code switches and duffs device in hn recently
def http_error(status):
Also, method polymorphism always seemed more powerful and intuitive to me than switch statements when the operation is something like: