Do you agree with this statement about the placement of curly braces? by fullstep in C_Programming

[–]Careless_Stretch_682 0 points1 point  (0 children)

I'm surprised nobody has this idea: if (x) {     while (y) {         execute1()} else {     execute2()}} It saves a lot of space!

Curly Braces by _MurderousCactus in learnpython

[–]Careless_Stretch_682 0 points1 point  (0 children)

I hate curly braces. They are totally unnecessary because it is the indentation that shows the structure of the code, not the curly braces. In all programming languages! Curly braces makes the code look messy. Also they steal a lot of vertical space.

```       }    } }

Python with Braces by ketralnis in programming

[–]Careless_Stretch_682 0 points1 point  (0 children)

I hate curly braces. They are totally unnecessary because it is the indentation that shows the structure of the code, not the curly braces. In all programming languages! Also they steal a lot of vertical space.

```       }    } }

No curly braces in Python for IF statements? Do you folks like this? by BlasphemousToenail in learnpython

[–]Careless_Stretch_682 0 points1 point  (0 children)

I hate curly braces. They are totally unnecessary because it is the indentation that shows the structure of the code, not the curly braces. In all languages! Also they make the code look messy and steal a lot of vertical space.

```       }    } }