5 ms·
I would say that the list boils down to free-form vs. structured more than anything else. All python code looks about the same due to it's structured nature. B
by zeffr 14y ago
I would say that the list boils down to free-form vs. structured more than anything else.
All python code looks about the same due to it's structured nature. Because of this, the language appears more "elegant". I'm a devout PHP coder, and build on custom frameworks to do whatever it is that I need. I have some pretty big applications as well. My preference is entirely for free-form languages due to the fact that I can control elegance and readability. It may require more effort, but it is certainly doable. In fact, I'd like python a whole lot more if I wasn't forced into the structured paradigm.
In short, lazy coders make ugly code despite the language.
- zwischenzug 14y agoI thought elegance was about conciseness and freedom of expression leading to creative and "neat" solutions to problems? The way you describe python as a language of structured constraint is pretty much the opposite of my understanding of programming language "elegance", with lisp or haskell being some kind of ultimate to aspire to.