|
|
|
|
|
by _andrei_
1092 days ago
|
|
For me, the pythonic syntax was what made me not want to try it.
Of course it's personal preference, but I can't stand anything that uses the indentation level to structure code. I love my curly braces and formatting tools.
I imagine I'm not alone in this, so there goes a chunk of people. |
|
I do have a customer using Python. We had our share of bugs introduced by wrong cut and paste or manual git conflict resolutions after merges for code like
That latter something() was actually outside the loop but got inside and tests didn't caught the error. There is the variant where something() should be inside the loop but got moved outside.