03-10-2010, 11:12 PM
Judging by these responses, both language are very good. If someone (like me) wanted wanted to learn both of these languages (eventually), which should I start with and what are the advantages/disadvantages of each?
(03-10-2010, 11:12 PM)Fallacy Wrote: [ -> ]Judging by these responses, both language are very good. If someone (like me) wanted wanted to learn both of these languages (eventually), which should I start with and what are the advantages/disadvantages of each?
(03-11-2010, 06:32 PM)uber1337 Wrote: [ -> ]I think that questions deserves it's own thread entirely but most people point beginners to python. If you have no prior programming experience python is great because of the clear straight forward syntax. Although if you want to learn both I would say C++ because now that python has spoiled me I find it impossible to deal with C syntax.Well, from what I've heard, if you learn Python first, it makes you lazy. While on the other hand, if you learn C++, it will make learning other languages a lot either. That and supposedly C++ is supposedly "x" amount more powerful, but more complicated, while Python is easy and relatively powerful. Another question, what things are each language most commonly used for?
(03-11-2010, 06:32 PM)uber1337 Wrote: [ -> ]I think that questions deserves it's own thread entirely but most people point beginners to python. If you have no prior programming experience python is great because of the clear straight forward syntax. Although if you want to learn both I would say C++ because now that python has spoiled me I find it impossible to deal with C syntax.
(03-11-2010, 09:33 PM)Fallacy Wrote: [ -> ]I see. I guess I will learn Python then, thanks. Are there any good tutorials that you recommend?
(11-03-2009, 02:02 AM)Fail Ninja Wrote: [ -> ]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).Well the core of the C++ program is
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.
cout << "Hello World!";
#include <iostream>
using namespace std;
int main () { cout << "Hello World!"; return 0; }
(11-02-2009, 12:04 PM)bsdpunk Wrote: [ -> ]I would be remiss to actually compare these two. Being as C++ and Python aren't really for the same things. I wouldn't create a web app in c++ and I wouldn't make a 400,000 loc project in python. I mean yes, you can do both, with both. But I just don't think you can compare the two.