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?
|
(Obviously, this is a joke.) |
|||||||||||||||||||
|
|
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:
|
|||
|
|
|
Yes. Curly braces are not used. Instead, you use the
|
|||||||
|
|
Correct for code blocks. However, you do define dictionaries in Python using curly braces:
Ahhhhhh. |
||||
|
|
|
Use Whyton: http://writeonly.wordpress.com/2010/04/01/whython-python-for-people-who-hate-whitespace/ |
|||
|
|
|
Yes.
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. |
|||
|
|
|
Yup :) And there's (usually) a difference between 4 spaces and a tab, so make sure you standardize the usage .. |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
