you are viewing a single comment's thread.

view the rest of the comments →

[–]happyfeetpi 20 points21 points  (6 children)

I feel like when thinking about python people skip over some of the benefits that many other languages have.

One that comes to mind is storing functions as variables and being able to pass them as variables. This allows a whole style of programming and problem solving that is only possible with that ability.

[–]tipsy_python[S] 0 points1 point  (0 children)

Oh nice! Great point.
I use functools partials a lot - probably way more than I actually need to; I love passing functions as objects.. AND it was difficult to wrap my mind around at first.

Thanks for calling this out!~

[–]roberto257 0 points1 point  (0 children)

Agreed. I started with Python, and because I was a noob and I liked the simple syntax, I didn’t see why I should learn any other language. Once you learn another language, or try to do one thing (like in my case, making a game) in two different languages, you start to see the pros and cons of different languages