What is the reason Python doesn't have switch statement?
|
4
|
|||||
|
|
|
Probably because, like in Perl, you don't need it to express the same thing? I admit I appreciate Ruby having one though, it makes code cleaner than a series of |
||
|
|
|
|
While I'm not experienced with using python I was intrigued by your question since I incorrectly assumed that most modern languages contained a switch statement... So I did some searching via google and found the following link to provide a fairly good answer: http://www.python.org/dev/peps/pep-3103/ Seems there is little popular support for it....but I'll let that article do the explaining... |
|||
|
|
|
It was proposed and rejected in PEP 3103. I don't know why it didn't have it initially. There's an idiom I saw here that can replace the switch statement by using a dict of value and actions:
And there's always the if-elif-else chain. |
||
|
|
|
PEP 3103 just talks about adding the switch statement to Python. This suggestion was rejected by Guido. Quoting Guido:
As a workaround, you may say something like this:
|
||
|
|
|
You have
And you have
{
key1: value,
key2: lambda : someFunction(),
key3: lambda :anything(),
key3: lambda x, y: someFunctionWithManyParams(x,y, 15, "abc")
}.get(key, defaultValue)
which is quite powerful idiom. EDIT: Improved as suggested in comments (thanks!) |
||||||||||
|
|
|
There are two reasons:
|
||||
|
|
|
Switch is a popular code smell in many OO languages (when you follow OO paradigm) and in most of cases it indicates that there should be polymorphic call there. When you're about to write a switch, stop for a minute and double check you design. Perhaps you can make a polymorphic call instead. Related question suggested in comments: http://stackoverflow.com/questions/126409/ways-to-eliminate-switch-in-code Article about switch and other similar stuff by Misko Hevery: http://misko.hevery.com/2008/12/08/clean-code-talks-inheritance-polymorphism-testing/ More about Switch Statements Smell: http://c2.com/cgi/wiki?SwitchStatementsSmell //Edited after suggestions in comments |
||||||||||||
|
|
|
Even in languages that DO have a switch statement (C++ and Java being the ones I use mostly), I rarely use it. If you need to select from multiple code branches so that an if statement won't suffice, then, IMHO, you're doing it wrong. If I need to select some code to run depending on the value of a variable, I find it much more powerful to do one of two things:
The point in both cases is to allow adding new values without needing to delve into the depths of the code and modify if or switch statements. |
|||
|
|
|
|
I say if they won't include it they should stop using it in the source code to python itself; then see who needs it :-p I've heard of keeping your language pruned but seriously; switch is good :-p |
||
|
|
|
Along with all of the other more detailed answers, I would add that a switch statement is simply unnecessary as one of the core ideas of the python language is that there should be one obvious way to do something. |
||
|
|
|
|
The Python FAQ has this answer: http://www.python.org/doc/faq/general/#why-isn-t-there-a-switch-or-case-statement-in-python |
||
|
|
|
|
"The Zen of Python", pasted below, leads you to the answer. Read lines 13 and 14. After seeing examples of dicts used for switch functionality, it starts to click that this is the Pythonic way of doing a switch statement in a less error-prone, more human readable form.
And, as others have mentioned, more verbose answers can be found in:
And here at stackoverflow there is a thread of proposed switch/case alternatives: |
|||
|
|
|
|
Fast note: If you want "fall-through" behavior, don't use an elif statement, because if it executes it exes the if-elif-else block. A series of pure "if" statements, however, will fall through. You can nest "if" w/ fallthrough with "if-elif-else" statements, but it results in a very fertile ground for hard to catch bugs. Also, a trailing else executes if the test before it fails, even if one of the earlier "if" statements executed. |
||
|
|
|
|
I think that a switch case is needlessly redundant, something Python strives to avoid. Not to mention the amount of code you'd have to write in python is virtually the same, if not less since you don't need break statements. Python
Switch
|
||||
|
|
|
switches, returns, for loops, while loops and if/else statements are all just contrived versions of goto, hangovers from the procedural programming days. Like drugs, they provide a quick satisfying fix, but in the long run they wreck health and cause other problems:-
Code is a lot better off without them. It is perfectly possible to program without directly using any of these statements, and programs written in this way are almost always more elegant, more flexible, and easier to understand and often a lot faster, because we can easily use better algorithms and don't spend so much time checking cases. This is the point of object oriented programming. Anyone can make a class that is essentially a placeholder for a bunch of switch statements, but that just isn't OOP. So what is OOP?
I hope this is useful to you. |
||||||
|
