What is the purpose of the colon before a block in Python?
Example:
if n == 0:
print "The end"
|
|
|
|
|
|
|
The colon is there to declare the start of an indented block. Technically, it's not necessary; you could just indent and de-indent when the block is done. However, based on the EIBTI Python koan (explicit is better than implicit), I believe that Guido deliberately made the colon obligatory, so any statement that should be followed by indented code ends in a colon. (It also allows one-liners if you continue after the colon, but this style is not in wide use.) It also makes easier the work of syntax-aware auto-indenting editors, which also counted in the decision. editThis question turns out to be a Python FAQ, and I found one of its answers by Guido here. |
|||
|
|
|
|
Consider the following list of things to buy from the grocery store, written in Pewprikanese.
When I read that, I'm confused, Are chunkykachoo and pewpewpew a kind of lalala? Or what if chunkykachoo and pewpewpew are indented just because they are special items? Now see what happens when my Pewprikanese friend add a colon to help me parse the list better: (<-- like this)
Now it's clear that chunkykachoo and pewpewpew are a kind of lalala. Let's say there is a person who's starting to learn Python, which happens to be her first programming language to learn. Without colons, there's a considerable probability that she's going to keep thinking "this lines are indented because this lines are like special items.", and it could take a while to realize that that's not the best way to think about indentation. |
||
|
|
|
Three reasons:
|
||
|
|
|
|
So you can put the 'then' clause on the same line:
|
||
|