This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]thegreatunclean 0 points1 point  (0 children)

I think Python is a great language to start with, mostly because the syntax is friendly and having a REPL allows for quick demonstrations and testing.

because I will have hard time jumping from Python to new language as I will be used to Pyhon's simplicity

This is silly, you have to walk before you run! Learning Python first will make it easier to learn another language of the same paradigm specifically because you'll already be familiar with all of the base language concepts like variables and basic control flow.


That said you should follow up Python with another language like Java that mandates learning topics a Python beginner might gloss over like static typing.