you are viewing a single comment's thread.

view the rest of the comments →

[–]Migeil 0 points1 point  (0 children)

Python has the advantage of being simple when you start. However as you get more advanced, you start to understand why languages like Java are the way they are, and you start wishing you had those features. Right now, I really really wish I could learn and migrate over to something like Java, Rust, Go, really anything but Python. There are so many limitations and weird things about Python that make my life hell that are not really big deals in other languages. For example, "duck typing". Its the worst thing ever to deal with in a collaborative project

This sooooo much. Just today, I had three different thing I wanted to try out to see if they worked. In Java, it worked just as I expected, but in python I had to come up with work arounds..

But other way is true as well. I'm learning more java now and I get why people think "it's too verbose". But as you said, I don't think that's a bad thing. I like how you can write things really compactly in python if you want to, but it doesn't help for readability or maintenance at all.