5 ms·
A decade of python here. I have found that Python really can show you what other language is someone's primary language. You can write Python to look VERY Jav
by bussierem 4y ago
A decade of python here.
I have found that Python really can show you what other language is someone's primary language. You can write Python to look VERY Java-like, or very Ruby-like, or many others.
Idiomatic Python does not look like this generally. Another commenter hit it well that this is just badly-hidden Java code written with Python.
Python is what you make it to be; don't let this kind of stuff from random people on the internet scare you into thinking you have to use GoF and Java-like patterns and classes everywhere. You CAN, but only if those are actually _useful_ to you.
- mariorojas 4y agoI agree! You know? When I feel burned out of Java, I usually write a quite simple script in Python and then, normally I get energy to complete my tasks. I don't imagine myself struggling against the same design patterns in Java when coding in Python. Thanks for your advice.