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?
|
|
You could use a dictionary:
|
|||||||||||||||||||||
|
|
If you'd like defaults you could use the dictionary "get" method:
|
|||||||||||||||
|
|
Python Cookbook has several recipes (implementations and corresponding discussions) for switch statement. Please visit the following links: |
|||
|
I've always liked doing it this way
|
|||||||||||||
|
|
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 |
|||||||||||
|
Usage:
Tests:
|
||||
|
|
|
My favorite one is a really nice recipe. You'll really like it. It's the closest one I've seen to actual switch case statements, especially in features. Here's an example:
|
|||
|
|
|
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? |
|||||||||||||||||||
|
|
Let's say you don't want to just return a value, but want to use methods that change something on an object. Using the approach stated here would be:
What happens here is that python evaluates all methods in the dictionary. So even if your value is 'a', the object will get incremented and decremented by x. Solution:
So you get a list containing a function and its arguments. This way, only the function pointer and the argument list get returned, not evaluated. 'result' then evaluates the returned function call. |
|||
|
|
|
If you're searching extra-statement, as "switch", I built a python module that extends Python. It's called ESPY as "Enhanced Structure for Python" and it's available for both Python 2.x and Python 3.x. For example, in this case, a switch statement could be performed by the following code:
that can be used like this:
so espy translate it in Python as:
|
||||
|
|
|
expanding on the "dict as switch" idea. if you want to use a default value for your switch:
|
|||||||||
|
|
If you have a complicated case block you can consider using a function dictionary lookup table... If you haven't done this before its a good idea to step into your debugger and view exactly how the dictionary looks up each function. NOTE: Do not use "()" inside the case/dictionary lookup or it will call each of your functions as the dictionary / case block is created. Remember this because you only want to call each function once using a hash style lookup.
|
|||||
|
|
I would just use if/elif/else statements. I think that it's good enough to replace the switch statement. |
|||
|
|
|
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. |
|||
|
|
|
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. |
||||
|
|
|
The solutions I use: A combination of 2 of the solutions posted here, which is relatively easy to read and supports defaults.
where
looks up
doesn't find it in the dict and uses the default |
||||
|
|
|
Greg's solutions will not work for unhashable entries. For example when indexing
Luckily though
Similarly there probably are immutable (thus probably hashable) versions of dictionaries or sets too. |
|||
|
|
Short and easy to read, has a default value and supports expressions in both conditions and return values. However, it is less efficient than the solution with a dictionary. For example, Python has to scan through all the conditions before returning the default value. |
|||
|
|
|
Just mapping some a key to some code is not really and issue as most people have shown using the dict. The real trick is trying to emulate the whole drop through and break thing. I don't think I've ever written a case statement where I used that "feature". Here's a go at drop through.
I was really imagining it as a single statement. I hope you'll pardon the silly formatting.
I hope that's valid python. It should give you drop through. of course the boolean checks could be expressions and if you wanted them to be evaluated lazily you could wrap them all in a lambda. I wouldn't be to hard to make it accept after executing some of the items in the list either. Just make the tuple (bool, bool, function) where the second bool indicates whether or not to break or drop through. |
|||||
|
|
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.
|
|||||||||
|
|
|||||
|