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

I was reading that Python does all it's "code blocks" by indentation, rather than with curly braces. Is that right? So functions, if's and stuff like that all appear without surrounding their block with curly braces?

share|improve this question
32  
This is really worthy of a stackoverflow question? Have you ever considered reading the Python docs or tutorial at python.org? – Brian Neal Dec 20 '09 at 16:01
5  
6  
In fact, Python supports curly braces, BEGIN/END, and almost any other language's block schemes: see python.org/doc/humor/…! – Alok Dec 20 '09 at 16:07
17  
"No question is newbie enough" (quote from SO FAQ). SO is about questions that can be answered. I believe both are true here. Perhaps for Pythoneers this is a trivial question, but so what? Others ask "how to get seconds out of a timestamp" or "what's a hex number" and nobody complains. – Abel Dec 20 '09 at 16:27
7  
I agree this isn't a bad question. yes, the answer is available in the docs, etc, but so are the answers to many SO questions. People new to Python often wonder about the lack of braces, why not answer this question as a way to get the best answer out there? – Ned Batchelder Dec 20 '09 at 17:25
show 3 more comments

9 Answers

up vote 85 down vote accepted
if foo: #{
    print "it's true"
#}
else: #{
    print "it's false!"
#}

(Obviously, this is a joke.)

share|improve this answer
1  
Oh Lars, you funny little man! :) – Kaitsu Dec 20 '09 at 16:14
4  
You so funny! I think I'm going to do that now every time I use python – Matt S. Dec 20 '09 at 17:07
So it's possible. cool! – openfrog Dec 25 '09 at 16:47
2  
@openfrog: no, it's not, these are just single-line code comments... (and he did say it was a joke) – Abel Dec 27 '09 at 23:31
1  
@Abel is correct. I should have explained the joke in a comment, just in case. – Lars Wirzenius Dec 28 '09 at 10:04

You can try to add support for braces using a future import statement, but it's not yet supported, so you'll get a syntax error:

>>> from __future__ import braces
  File "<stdin>", line 1
SyntaxError: not a chance
share|improve this answer

Yes. Curly braces are not used. Instead, you use the : symbol to introduce new blocks, like so:

if True:
    DoSomething()
    SomethingElse()
else:
    Something()
share|improve this answer
2  
But better to follow the convention of 98% of Python code and not put that spurious space in front of the colon. The more surprises you throw in front of readers, the more they'll be distracted from the real meaning of the code. – Peter Hansen Dec 20 '09 at 16:39
Gah. Old habits die hard, eh? Will fix. Thanks :). – Lucas Jones Dec 20 '09 at 16:48

Correct for code blocks. However, you do define dictionaries in Python using curly braces:

a_dict = {
    'key': 'value',
}

Ahhhhhh.

share|improve this answer

Yes.

if True:
    #dosomething
else:
    #dosomething else

#continue on with whatever you were doing

Basically, wherever you would've had an opening curly brace, use a colon instead. Unindent to close the region. It doesn't take long for it to feel completely natural.

share|improve this answer

Yup :)

And there's (usually) a difference between 4 spaces and a tab, so make sure you standardize the usage ..

share|improve this answer
2  
Highly recommended to uses 4 spaces over tab too, so please change old habits if you currently use tabs :) – Jordan Messina Dec 20 '09 at 17:17

As others have mentioned, you are correct, no curly braces in Python. Also, you do not have no end or endif or endfor or anything like that (as in pascal or ruby). All code blocks are indentation based.

share|improve this answer

Yes, code blocks in Python are defined by their indentation. The creators of Python were very interested in self-documenting code. They included indentation in the syntax as a way of innately enforcing good formatting practice.

I programmed in Python for a few years and became quite fond of its code structure because it really is easier. Have you ever left out a closing curly brace in a large program and spent hours trying to find it? Not a problem in Python. When I left that job and had to start using PHP, I really missed the Python syntax.

share|improve this answer

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.