I want to write a function in python that returns different fixed values based on the value of an input index. In other languages I would use a switch or case statement, but python does not appear to have a switch statement. What are the recommended python solutions in this scenario?
|
9
|
|
|
|
|
|
You could use a dictionary:
|
||||||||||||
|
|
|
I've always liked doing it this way
|
||
|
|
|
If you are really just returning a predetermined, fixed value, you could create a dictionary with all possible input indexes as the keys, along with their corresponding values. Also, you might not really want a function to do this - unless you're computing the return value somehow. Oh, and if you feel like doing something switch-like, see here. |
|||
|
|
|
|
In addition to the dictionary methods (which I really like, BTW), you can also use if-elif-else to obtain the switch/case/default functionality:
This of course is not identical to switch/case - you cannot have fall-through as easily as leaving off the break; statement, but you can have a more complicated test. It's formatting is nicer than a series of nested ifs, even though functionally that's what it is closer to. |
|||
|
|
|
|
There's a pattern that I learned from Twisted Python code.
You can use it any time you need to dispatch on a token and execute extended piece of code. In a state machine you would have Edit: how exactly is that used In case of SMTP you will receive
You'll receive (The original method is also called |
||||
|
|
|
The switch statement is just syntactical sugar which is probably why Python doesn't have it. You can use if else statements for this functionality easily. Like Matthew Schinckel said, you can use if and elif and else. It is also a simple matter to have "fall-through" capabilities like most switch statements. All you have to do is not use elif.
|
||||||||
|
|
|
I would just use if/elif/else statements. I think that it's good enough to replace the switch statement. |
||
|
|
|
|
expanding on the "dict as switch" idea. if you want to use a default value for your switch:
|
||||
|
|
|
If you'd like defaults you could use the dictionary "get" method:
|
||
|
|
|
|
A true switch/case in Python is going to be more difficult than a dictionary method or if/elif/else methods because the simple versions do not support fall through. Another downfall of the if/elif/else method is the need for repeated comparisons. The C implementation of a switch/case has a performance benefit over if/else if/else in that only a single comparison is needed. The result of that comparison is used as an offset into a jump table (in the underlying asm generated). To mimicking the true functionality in Python would be a pain. Does any one have an implementation that would allow for fall through while only using a single comparison? |
||||||||||
|
|
|
|
||
|
|
|
|
Python Cookbook has several recipes (implementations and corresponding discussions) for switch statement. Please visit the following links: |
||||
|
|
|
I have made a (relatively) flexible and re-usable solution for this. It can be found at GitHub as this gist. If the result of the switch function is callable, it is automatically called. |
||
|
|
