Search Results

0
votes

Why doesn’t Python have a switch statement?

"The Zen of Python", pasted below, leads you to the answer. Read lines 13 and 14. After seeing examples of dicts used …
2
votes

Confusing […] List in Python: What is it?

EDIT: As mentioned above, this isn't the Ellipsis object, but the result of a looped list. I jumped the gun here. Knowing about the Ellipsis object is a good bit of back shelf knowledge should yo …
11
votes

Why doesn’t Python have multline comments?

This likely goes back to the core concept that there should be one obvious way to do a task. Additional comment styles add unnecessary complications and could decrease readability. …