Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
10  
Related PEP, authored by Guido himself: PEP 3103 – chb Jun 16 '12 at 17:22

22 Answers

up vote 140 down vote accepted

You could use a dictionary:

def f(x):
    return {
        'a': 1,
        'b': 2,
    }[x]
share|improve this answer
1  
What happens if x is not found? – Nick Sep 19 '08 at 15:46
5  
@nick: you can use defaultdict – Eli Bendersky Sep 19 '08 at 17:38
2  
This is not a true switch/case... please see my response below – daniel Sep 20 '08 at 20:21
51  
I'd recommend putting the dict outside of the function if performance is an issue, so it doesn't re-build the dict on every function call – Claudiu Oct 23 '08 at 16:22
1  
@EliBendersky, Using the get method would probably be more normal than using a collections.defaultdict in this case. – Mike Graham Feb 23 '12 at 16:38
show 4 more comments

If you'd like defaults you could use the dictionary "get" method:

def f(x):
    return {
        'a': 1,
        'b': 2,
        }.get(x, 9)    # 9 is default if x not found
share|improve this answer
1  
What if 'a' and 'b' match 1, and 'c' and 'd' match 2? – John Mee Apr 9 '10 at 7:57
3  
@JM: Well, obviously dictionary lookups don't support fall-throughs. You could do a double dictionary lookup. I.e. 'a' & 'b' point to answer1 and 'c' and 'd' point to answer2, which are contained in a second dictionary. – Nick Apr 9 '10 at 9:54
great ! implementing now ! :) – shahjapan May 15 '10 at 4:59
2  
this should be the answer! – Jeffrey Kevin Pry Oct 17 '12 at 19:54

Python Cookbook has several recipes (implementations and corresponding discussions) for switch statement. Please visit the following links:

  1. http://code.activestate.com/recipes/410692/

  2. http://code.activestate.com/recipes/410695/

  3. http://code.activestate.com/recipes/181064/

share|improve this answer
13  
This deserves more upvotes. In particular, the first is awesome! – Casebash Oct 24 '09 at 10:53
1  
That first one is clever, but is it Pythonic? – Craig McQueen Nov 3 '09 at 3:13
Late to this, but just wanted to say thanks for the first link. Had never bumped into it and really like it. – ThE_JacO Nov 1 '12 at 4:41
4  
This answer would be better if it had something more than just links in it. Those links could go stale. – Caltor Nov 19 '12 at 23:15

I've always liked doing it this way

result = {
  'a': lambda x: x * 5,
  'b': lambda x: x + 7,
  'c': lambda x: x - 2
}[value](x)

From here

share|improve this answer
2  
great method, combined with get() to handle default is my best choice too – AlberT Sep 2 '09 at 16:11
2  
He's asking for fixed values. Why generate a function to calculate something when it's a lookup? Interesting solution for other problems though. – Nick Jan 21 '10 at 17:06
2  
it maybe isn't a good idea to use lambda in this case because lambda is actually called each time the dictionary is built. – VSH Apr 22 '12 at 21:48

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:

if x=='a':
    # Do the thing
elif x=='b':
    # Do the other thing
else:
    # Do the default

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.

share|improve this answer
1  
i'd really prefer this, it uses a standart language construct and doesn't throw a KeyError if no matching case is found – martyonair May 18 at 10:30

There's a pattern that I learned from Twisted Python code.

class SMTP:
    def lookupMethod(self, command):
        return getattr(self, 'do_' + command.upper(), None)
    def do_HELO(self, rest):
        return 'Howdy ' + rest
    def do_QUIT(self, rest):
        return 'Bye'

SMTP().lookupMethod('HELO')('foo.bar.com') # => 'Howdy foo.bar.com'
SMTP().lookupMethod('QUIT')('') # => 'Bye'

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 state_ methods, and dispatch on self.state. This switch can be cleanly extended by inheriting from base class and defining your own do_ methods. Often times you won't even have do_ methods in the base class.

Edit: how exactly is that used

In case of SMTP you will receive HELO from the wire. The relevant code (from twisted/mail/smtp.py, modified for our case) looks like this

class SMTP:
    # ...

    def do_UNKNOWN(self, rest):
        raise NotImplementedError, 'received unknown command'

    def state_COMMAND(self, line):
        line = line.strip()
        parts = line.split(None, 1)
        if parts:
            method = self.lookupMethod(parts[0]) or self.do_UNKNOWN
            if len(parts) == 2:
                return method(parts[1])
            else:
                return method('')
        else:
            raise SyntaxError, 'bad syntax'

SMTP().state_COMMAND('   HELO   foo.bar.com  ') # => Howdy foo.bar.com

You'll receive ' HELO foo.bar.com ' (or you might get 'QUIT' or 'RCPT TO: foo'). This is tokenized into parts as ['HELO', 'foo.bar.com']. The actual method lookup name is taken from parts[0].

(The original method is also called state_COMMAND, because it uses the same pattern to implement a state machine, i.e. getattr(self, 'state_' + self.mode))

share|improve this answer
I don't see the benefit from this pattern over just calling the methods directly: SMTP().do_HELO('foo.bar.com') OK, there can be common code in the lookupMethod, but since that also can be overwritten by the subclass I don't see what you gain from the indirection. – Mr Shark Sep 13 '08 at 11:35
You wouldn't know what method to call in advance, that is to say 'HELO' comes from a variable. i've added usage example to the original post – user6205 Sep 13 '08 at 17:45
May I suggest simply: eval('SMTP().do_' + command)('foo.bar.com') – jforberg Jun 21 '11 at 17:32
Also, why instantiate a new SMTP object for each method call? That's what global functions are for. – jforberg Jun 21 '11 at 17:34
eval? seriously? and instead of instantiating one method per call, we can very well instantiate once and use it in all calls provided it has no internal state. – Mahesh Mar 19 at 18:10
class switch( object ):
    value = None
    def __new__( class_, value ):
        class_.value = value
        return True

def case( *args ):
    return any( ( arg == switch.value for arg in args ) )

Usage:

while switch( n ):
    if case( 0 ):
        print "You typed zero."
        break
    if case( 1, 4, 9 ):
        print "n is a perfect square."
        break
    if case( 2 ):
        print "n is an even number."
    if case( 2, 3, 5, 7 ):
        print "n is a prime number."
        break
    if case( 6, 8 ):
        print "n is an even number."
        break
    print "Only single-digit numbers are allowed."
    break

Tests:

n = 2
#Result:
#n is an even number.
#n is a prime number.
n = 11
#Result:
#Only single-digit numbers are allowed.
share|improve this answer

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:

# The following example is pretty much the exact use-case of a dictionary,
# but is included for its simplicity. Note that you can include statements
# in each suite.
v = 'ten'
for case in switch(v):
    if case('one'):
        print 1
        break
    if case('two'):
        print 2
        break
    if case('ten'):
        print 10
        break
    if case('eleven'):
        print 11
        break
    if case(): # default, could also just omit condition or 'if True'
        print "something else!"
        # No need to break here, it'll stop anyway

# break is used here to look as much like the real thing as possible, but
# elif is generally just as good and more concise.

# Empty suites are considered syntax errors, so intentional fall-throughs
# should contain 'pass'
c = 'z'
for case in switch(c):
    if case('a'): pass # only necessary if the rest of the suite is empty
    if case('b'): pass
    # ...
    if case('y'): pass
    if case('z'):
        print "c is lowercase!"
        break
    if case('A'): pass
    # ...
    if case('Z'):
        print "c is uppercase!"
        break
    if case(): # default
        print "I dunno what c was!"

# As suggested by Pierre Quentel, you can even expand upon the
# functionality of the classic 'case' statement by matching multiple
# cases in a single shot. This greatly benefits operations such as the
# uppercase/lowercase example above:
import string
c = 'A'
for case in switch(c):
    if case(*string.lowercase): # note the * for unpacking as arguments
        print "c is lowercase!"
        break
    if case(*string.uppercase):
        print "c is uppercase!"
        break
    if case('!', '?', '.'): # normal argument passing style also applies
        print "c is a sentence terminator!"
        break
    if case(): # default
        print "I dunno what c was!"
share|improve this answer

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?

share|improve this answer
16  
I suppose that point of view depends on whether you consider fall-through to be a feature or not. – Greg Hewgill Sep 21 '08 at 1:29
2  
Yes, some languages support switches that do not even allow fall through (C# does not for example, although it does allow multiple mappings, which explains why it still requires "break;") – TM. Nov 27 '08 at 4:41
C# supports explicit fall through. – dalle Dec 29 '08 at 11:55
5  
He doesn't need a switch statement. "I want to write a function in python that returns different fixed values based on the value of an input index." If you need fall through support to do that, you're doing something wrong. – Wallacoloo May 15 '10 at 23:24
1  
As this stands right now this is more of a question then an answer. – James McMahon Oct 3 '12 at 19:32
show 5 more comments

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:

result = {
  'a': obj.increment(x),
  'b': obj.decrement(x)
}.get(value, obj.default(x))

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:

func, args = {
  'a' : (obj.increment, (x,)),
  'b' : (obj.decrement, (x,)),
}.get(value, (obj.default, (x,)))

result = func(*args)

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.

share|improve this answer

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:

macro switch(arg1):
    while True:
        cont=False
        val=%arg1%
        socket case(arg2):
            if val==%arg2% or cont:
                cont=True
                socket
        socket else:
            socket
        break

that can be used like this:

a=3
switch(a):
    case(0):
        print("Zero")
    case(1):
        print("Smaller than 2"):
        break
    else:
        print ("greater than 1")

so espy translate it in Python as:

a=3
while True:
    cont=False
    if a==0 or cont:
        cont=True
        print ("Zero")
    if a==1 or cont:
        cont=True
        print ("Smaller than 2")
        break
    print ("greater than 1")
    break
share|improve this answer

expanding on the "dict as switch" idea. if you want to use a default value for your switch:

def f(x):
    try:
        return {
            'a': 1,
            'b': 2,
        }[x]
    except KeyError:
        return 'default'
share|improve this answer
6  
I think it's clearer to use .get() on the dict with the default specified. I prefer to leave Exceptions for exceptional circumstances, and it cuts three lines of code and a level of indentation without being obscure. – Chris B. Jun 5 '09 at 15:14
2  
This is an exceptional circumstance. It may or may not be a rare circumstance depending on useful, but it's definitely an exception (fall back on 'default') from the rule (get something from this dict). By design, Python programs use exceptions at the drop of a hat. That being said, using get could potentially make the code a bit nicer. – Mike Graham Mar 26 '10 at 16:49

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.

def first_case():
    print "first"

def second_case():
    print "second"

def third_case():
    print "third"

mycase = {
'first': first_case, #do not use ()
'second': second_case, #do not use ()
'third': third_case #do not use ()
}
myfunc = mycase['first']
myfunc()
share|improve this answer
Surely this is the way to do it (for when switch is used for more than just: look up value in dictionary!), worth noting you have to be carefully consider scope. – Andy Hayden Sep 23 '12 at 16:11
Right... I updated this. – VSH Oct 17 '12 at 21:53

I would just use if/elif/else statements. I think that it's good enough to replace the switch statement.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

The solutions I use:

A combination of 2 of the solutions posted here, which is relatively easy to read and supports defaults.

result = {
  'a': lambda x: x * 5,
  'b': lambda x: x + 7,
  'c': lambda x: x - 2
}.get(whatToUse, lambda x: x - 22)(value)

where

.get('c', lambda x: x - 22)(23)

looks up "lambda x: x - 2" in the dict and uses it with x=23

.get('xxx', lambda x: x - 22)(44)

doesn't find it in the dict and uses the default "lambda x: x - 22" with x=44.

share|improve this answer

Greg's solutions will not work for unhashable entries. For example when indexing lists.

# doesn't work
def give_me_array(key)
  return {
      [1, 0]: "hello"
    }[key]

Luckily though tuples are hashable.

# works
def give_me_array(key)
  return {
      (1, 0): "hello"
    }[tuple(key)]

Similarly there probably are immutable (thus probably hashable) versions of dictionaries or sets too.

share|improve this answer
def f(x):
     return 1 if x == 'a' else\
            2 if x in 'bcd' else\
            0 #default

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.

share|improve this answer

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.

def case(list): reduce(lambda b, f: (b | f[0], {False:(lambda:None),True:f[1]}[b | f[0]]())[0], list, False)

case([
    (False, lambda:print(5)),
    (True, lambda:print(4))
])

I was really imagining it as a single statement. I hope you'll pardon the silly formatting.

reduce(
    initializer=False,
    function=(lambda b, f:
        ( b | f[0]
        , { False: (lambda:None)
          , True : f[1]
          }[b | f[0]]()
        )[0]
    ),
    iterable=[
        (False, lambda:print(5)),
        (True, lambda:print(4))
    ]
)

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.

share|improve this answer
1  
Drop-through is unstructured. You don't need it, it will make your code harder to maintain, harder to avoid bugs, and is banned my many coding standards. It is a hangover from C. C did not go 100% structured, it left in drop-through, goto, continue, break. Most of its descendent copied it. – richard Feb 11 at 10:34

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.

if x == 1:
    # 1
if x == 2:
    # fall-through
elif x == 3:
    # not fall-through
share|improve this answer
4  
Switch statements are more than sugar in some languages. In C and C++ in particular, switch statements can be converted to jump tables, resulting in one single comparison (whereas if you have a chain of N if-elses, you'll execute O(N) comparisons). – Tom Dec 29 '08 at 12:04
7  
You'll also find that it doesn't fall through, if x== 1 ... it will never execute what's in the second if ... since x != 2 – Nico Jun 5 '09 at 13:45
def f(x):    
  return {'a': 1,'b': 2,}.get(x) or "Default"
share|improve this answer
7  
This code could be bug-prone, for instance if you changed the dict to {'a': 0, 'b': 1}—the 0 is just as false as the None you're trying to test with this or. (I avoid ever using the or trick for this reason.) The intended use of get is {'a': 1,'b': 2,}.get(x, "Default"). – Mike Graham Mar 26 '10 at 16:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.