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,
|
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, |
|||||
|
|
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:
(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. |
|||||||||||||||||||||
|
|
|
|||||||||||
|
|
Try this instead:
Or you could use a list comprehension or generator expression if your functions return values:
|
|||
|
|