11-03-2009, 02:02 AM
I think python be because it is a lot easier and the syntax is easier than C++, but python is almost as powerful ( This is just my opinion as a beginner in python and some who tried C++ and quit).
Another reason is here is the hello world for Python -
And here is Hello World for C++ -
I also think that if you start with C++ you will get frustrated quickly and quit programming quickly.
Just my Opinion.
Another reason is here is the hello world for Python -
Code:
Print " Hello World! "
And here is Hello World for C++ -
Code:
#include <iostream>
using namespace std;
void main()
{
cout << "Hello World!" << endl;
}
I also think that if you start with C++ you will get frustrated quickly and quit programming quickly.
Just my Opinion.