show/hide this revision's text 4 added 153 characters in body

If you are just starting out programming, it doesn't matter what you learn. You're going to learn the same concepts in any of these languages, and if you eventually become a competent programmer, switching languages should not be a problem for you.

If I were you, I would approach this as learning a way of thinking rather than learning a specific language. The fundamental problems are similar no matter what language you're writing in. None of the languages you list is so different that you wouldn't be able to pick it up easily, knowing one of the others.

If I had to choose one, I would say go with python, simply because it's simple to write, it tries to avoid complicated syntax that might confuse a beginner, and there are a wide variety of available libraries. If you want to do web stuff first, I might say go with Ruby instead, since I happen to like Rails. You can do web stuff just fine in Python, though.

Once you know the basics, though, I would strongly recommend putting down the Python book for a while and picking up a book on data structures and algorithms. If you really want to know how to organize a program and how to build efficient systems, that's what you need to know, not the details of a particular language. After you get the hang of that, pick up a book on software engineering or design. Code Complete and Design Patterns come to mind.

Don't get yourself stuck in a language rut.

show/hide this revision's text 3 deleted 11 characters in body

If you are just starting out programming, it doesn't matter what you learn. You're going to learn the same concepts in any of these languages, and if you eventually become a competent programmer, switching languages should not be a problem for you.

If I were you, I would approach this as learning a way of thinking rather than learning a specific language. The fundamental problems are similar no matter what language you're writing in. None of the languages you list is so different that you wouldn't be able to pick it up easily, knowing one of the others.

If I had to choose one, I would say go with python, simply because it's simple to write, it tries to avoid complicated syntax that might confuse a beginner, and there are a wide variety of available librariesfor Python.

Once you know the basics, though, I would strongly recommend putting down the Python book for a while and picking up a book on data structures and algorithms. If you really want to know how to organize a program and how to build efficient systems, that's what you need to know, not the details of a particular language. After you get the hang of that, pick up a book on software engineering or design. Code Complete and Design Patterns come to mind.

Don't get yourself stuck in a language rut.

show/hide this revision's text 2 added 249 characters in body

If you are just starting out programming, it doesn't matter what you learn. You're going to learn the same concepts in any of these languages, and if you eventually get to be become a competent programmer, switching languages should not be a problem for you.

If I were you, I would approach this as learning a way of thinking rather than learning a specific language. The fundamental problems are similar no matter what language you're writing in. None of the languages you list is so different that you wouldn't be able to pick it up easily, knowing one of the others.

If I had to choose one, I would say go with python, simply because it's simple to write, it tries to avoid complicated syntax that might confuse a beginner, and there are a wide variety of available libraries for Python.

Once you know the basics, though, I would strongly recommend putting down the Python book for a while and picking up a book on data structures and algorithms. If you really want to know how to organize a program and how to build efficient systems, that's what you need to know, not the details of a particular language. After you get the hang of that, pick up a book on software engineering or design. Code Complete and Design Patterns come to mind.

Don't get yourself stuck in a language rut.

show/hide this revision's text 1