I asked a few reliable sources already.
My friend,(edit:fixed) who graduated from UT with Honors with a Bachelors of Science in Computer Science, and is working on Andorid apps and participated in the recent Netflix competition, wrote this :
Out of the two...
Which, I can say, is true. Five minutes in and I was already writing small 3 line scripts that worked.Python is easiest to learn.
I'm not sure about this. My friend above only worked with those who knew it; he doesen't know the language himself. Lo, from ODF-online.org, does know Python and worte:Lots of experienced programmers prefer to use Python over C++ for certain projects.
However, my UT friend did show some jelousy of Python users.I personally, do not like python. The advantages seem to be that you can do many things much faster than with e.g. C++, you can debug it easier etc... However, pythons runtime is a mess. Also, I think C++ has far more librarys (3D engines, physics engines, netcode libraries, whatever other libraries) to use than python. You might find a workaround to access them via a C++ workaround, but why not using C++ for the whole project than?
My conclusion is, that if you just want to have a bit of fun ;) - use Python. But for everything more, I suggest only C or C++. (My 2 Cents :D
So far, I've been reading the Python documents tutorial introduction section to better understand Python and its uses. It opens with...You can do serious work with Python, it's not just for fun. Often times, it's better to use Python because it'll take you 20 minutes to do something that will take you 2 hours with C++.
Thank you.If you do much work on computers, eventually you find that there’s some task you’d like to automate.
...
Or maybe you’ve written a program that could use an extension language, and you don’t want to design and implement a whole new language for your application.
...
You could write a Unix shell script or Windows batch files for some of these tasks, but shell scripts are best at moving around files and changing text data, not well-suited for GUI applications or games. You could write a C/C++/Java program, but it can take a lot of development time to get even a first-draft program. Python is simpler to use, available on Windows, Mac OS X, and Unix operating systems, and will help you get the job done more quickly.