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

I am trying to check each index in an 8 digit binary string. If it is '0' then it is 'OFF' otherwise its 'ON'. I'm wondering if there's a more concise way to write this code with a switch-like feature.

Thanks,

share|improve this question
5  
Are you trying to do [{'0':'Off', '1':'On'}.get(b) for b in "01101101"] – joeforker Sep 15 '09 at 20:47

3 Answers

up vote 8 down vote accepted

No it doesn't. In the Python core language, one of the rules is to only have one way to do something. The switch is redundant to:

if x == 1:
    pass
elif x == 5:
    pass
elif x == 10:
    pass

(without the fall-through, of course).

The switch was originally introduced to cut down on the number of curley braces needed to do do similar if blocks, however, with python there are no braces anyways.

share|improve this answer
4  
== – Fragsworth Sep 15 '09 at 20:59
3  
Anyone who thinks Python "only has one way to do something" is very confused. – Glenn Maynard Sep 15 '09 at 22:49
7  
@Glenn Maynard: There may be more than one way to do it, but "There should be one -- and preferably only one -- obvious way to do it", per PEP 20 ("The Zen of Python"). – Daniel Pryden Sep 15 '09 at 22:53
5  
I believed switch's purpose was to tell the compiler to build a jump table? (I know current compilers don't need this.) – Bastien Léonard Sep 15 '09 at 22:54
1  
Although that way may not be obvious at first unless you're Dutch. – Stefano Borini Sep 16 '09 at 13:09
show 4 more comments

"Why isn't there a switch or case statement in Python?"

share|improve this answer
I embedded a snippet from your very good link, roll it back if you don't like it. – Dustin Getz Sep 15 '09 at 20:45
That doesn't have fall-through either. – dlamblin Sep 15 '09 at 20:58
In theory you could implement a one-liner with fall-through by using defaultdict: >>> from collections import defaultdict >>> functions = defaultdict(lambda : not_found, a=function_1, b=function_2) but probably not a good idea in practice, particularly if the fall-through case is common :) – Ned Deily Sep 15 '09 at 21:58
fall-through is a bad idea. good riddance. – joeforker Sep 16 '09 at 1:35
The link is dead – Adam Nov 23 '10 at 23:40
show 1 more comment

Try this instead:

def on_function(*args, **kwargs):
    # do something

def off_function(*args, **kwargs):
    # do something

function_dict = { '0' : off_function, '1' : on_function }

for ch in binary_string:
   function_dict[ch]()

Or you could use a list comprehension or generator expression if your functions return values:

result_list = [function_dict[ch]() for ch in binary_string]
share|improve this answer
This is really clever. – twneale Sep 15 '09 at 21:45

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.