vote up 2 vote down star
4

I spent a few days reading about C++ and Python and I found that Python is so much simpler and easy to learn.

So I wonder does it really worth spending time learning it? Or should I invest that time learning C++ instead?

What can C++ do and Python can't ?

flag

60% accept rate
1  
Both languages are Turing-complete -- they can do the same things. Please edit your question to remove the "What can C++ do and python can't ?" That's not a sensible thing to ask. – S.Lott Nov 24 at 20:21
1  
With C++ you can shoot in your foot and blow the whole leg off. – Stefano Borini Nov 25 at 8:52

9 Answers

vote up 21 vote down check

Some Python limits :

- Python is slow. It can be improved in many ways (see other answers) but the bare bone cPython is 100 slower that C/C++.

- Python is opened to anything. It's really hard to protect / obfuscate / limit Python code.

- Python is not hype. Unlike Ruby, there is no "cool wave" around Python, and it's still much harder to find a experienced Python coder, than, let's say, a Java or a PHP pro.

- After using Python, a lot of languages seems to be a pain to use. You'd think it's good, but believe me, not always. When you have to go Javascript after a Python project, your eyes are in tears for at least 3 days. Really hard to get started.

- It's harder to find web hosting than for popular solutions, such as PHP.

- As a dynamic language, you don't have the very handy refactoring tools you could get with Java and Eclipse or C# and VS.

- For the same reason, you can't rely on type checking as a safety net. This is why pythonistas tend to follow best practice and write unit tests more often than others.

- It seems I just can't find an IDE with a decent code completion. PyDev, Gedit, Komodo, SPE, etc. just don't do it as good as it could be.

I just ran into ulipad this morning : works great under Ubuntu and Windows, includes debuger, shell integration, autoindent, code folding, automatic syntax checking, unit test integration, TextMate-like snippets and a decent code completion. And it's sooooo fast. It's a young and perfectible (sometimes buggy) project and I know this is not the place to write this, but I've but searching that for years, so screw it :-)

- The best docs are still in English only. Some people don't deal well with it.

- You have to get use to the syntax. Not only you get spaces and line breaks instead of bracets, but you can forget about long lambdas, --i, and ternary operation (before 2.5).

Now, to me, these are not reasons to not learn a tool that will make you produce more while having more fun. But maybe it's just me :-)

Honestly, given that :

  • C++ much harder to learn;
  • You can do pretty much any thing you want with Python;
  • You will get quicker result with Python in your projects.

Unless you have professional issues involving C++, you'd better learn Python first, it's more motivating. You still can learn C++ later, it's a useful language for system programming, embedded devices and such.

Don't try to learn both at the same times, multitasking rarely ends well.

link|flag
2  
+1 for actually answering the question that was asked. – Jason Orendorff Nov 25 at 0:10
So is it bad that I like Python AND JavaScript? – TM Nov 25 at 4:14
1  
I like Javascript too, but much like very spicy food, I need time to get back to it without crying. – e-satis Nov 25 at 8:13
1  
thanks for Ulipad, I just new that, I was using PyScripter before. – S.Mark Nov 25 at 8:45
Python is hyped. Ruby is not hyped. Ruby on rails is. Take rails away, who uses ruby ? – Stefano Borini Nov 25 at 8:53
show 2 more comments
vote up 9 vote down

Here's why it's worth learning Python:

A comparatively small number of problems are constrained by the speed of the algorithm. A comparatively large number of problems are bounded by the speed of the developer.

link|flag
Best. point. ever. – Stefano Borini Nov 25 at 8:50
vote up 8 vote down

Why don't you ask the converse question? Unlike C++, Python can give you antigravity and summon souls via its import command. On the other hand, C++'s 'equivalent' -- #include -- only allows you to get some boring I/O and math libraries.

Seriously though.. C++ allows you to do more low-level stuff e.g. kernel programming, and allows you to write programs that run much faster (approximately ~20x). You can use it to create real threads that can take advantage of multiple-cored processors, while Python (due to its design) can generally only run its simulated threads on a single core.

IMHO you should learn both; Python for web development and quick-and-dirty scripts, C++ to write systems code, desktop applications, as well as to have a better low-level understanding of the computer. If you're just starting out, then Python; it's much easier to begin with.

More concrete measurements on the speed difference can be found here.

Edit: Seems like my information on multi-threading is out of date; see John Paulett's comment.

link|flag
2  
With the new multiprocessing module the single-core caveat is no longer true. Additionally, other implementations like Jython and Ironpython do not suffer from the GIL like CPython does. – John Paulett Nov 24 at 19:52
Also, in terms of speed, I've had great luck using Pysco and Cython to dramatically speed up Python. Pysco JITs the code and is a quick way to get a 4-100x improvement (although it is only 32-bit, since the developers are now working on PyPy). Cython will actually transform most Python code into C code, which you can them compile with gcc using its optimizations (-O3). In piece of code I had nearly a 1000x speed up. Python also has great binding tools so that if you write your application in Python and discover a slow spot, you can rewrite that code as C and use SWIG or ctypes to call it. – John Paulett Nov 24 at 21:04
vote up 4 vote down

They're not used for the same kinds of things, in general. Python is very useful for prototyping since it is so simple, but isn't always the best choice when speed is an important factor, since it is an interpreted language. C++ can be heavily optimized, but as you said might be much more difficult to write and understand.

If you want to do systems or applications programming, you should learn C++. If you are programming for fun and leisure, or to solve problems like at http://projecteuler.net/ then Python is a good choice too.

I personally also recommend learning C/C++ first if you want to get very serious about programming, because it teaches you the important concept of memory management, which might be overlooked in managed languages.

link|flag
1  
And definitely learn simple C before the crazy mess that is C++! – bobince Nov 24 at 20:33
vote up 2 vote down

if you are trying to find out whether you are still going to be employed some time later using C++ or Python, don't concern yourself with a single language's longevity. Learn to program. Don't learn to program in <insert a language here>.

Here is an analogy: If your car is running fine (gets you where you're going, has good mileage, cheap to maintain, relatively safe), there is no logical reason to trade it in for another one. None. Whatsoever. Drive it to the ground before you even consider what make or model to get next. But if you are already looking around thinking what car to get, just go get it, stop asking everybody you know whether you should do it. If you need to ask, you need to change it. It's as simple as that.

link|flag
We only have a limited time on Earth to study and learn, and one must be career-minded. If I could spend X hours now learning C, or X hours now learning insert hip technology sure to pull $$$ jobs for 5 years, I'll choose the latter, because it looks good on the resume and people like hiring people with prior experience. Sure, you should always use the best tool for the job, but if you're stuck driving a beat-up hatchback when a corvette is available, you're just not clever. – Stefan Kendall Nov 24 at 19:34
@Stefan Kendall: I am not a professional programmer (I hope I will become one, because I am passionate about programming), but I would like to say that your opinion apalles me. I mean, learning a technology simply because it looks good on the résumé? And, pray tell, what makes you think, that C doesn't "look good" on the résumé? – shylent Nov 24 at 20:00
What looks fine on a resume depends on where you want your career to go. For a web developer career, listing C probably isn't going to help you land a job (not that it will detract either, unless that's all you know). Given limited available learning time, you're better off learning skills in demand than unmarketable ones. – Matt Garrison Nov 24 at 20:50
1  
From the TIOBE index, C and C++ are two of the top four languages. So, they enjoy considerable popularity. But little "sex-appeeal". – S.Lott Nov 24 at 20:52
vote up 1 vote down

From what I've been told, 1% of learning C++ is learning C. 1% is learning the extra basic features. 98% is learning to use the features in a safe, maintainable way, and coping with the dark hairy corners of the language.

Learning python will teach you to write code that is safe, and maintainable. I think that if you learn python then go back to C++, then you will be able to write good C++ code. Of course, that won't mean you will understand bad C++, or C++ code that was written in a non-pythonic way.

Limits to python?

  • It's interpreted, so you have to ship the source and the interpreter; and processes will take much longer to start up.
  • It's not C++, so it won't play with existing C++ code.
  • It's a bit slower (even if you wrap the hot loops in C).*
  • It encourages you to be "pythonic", and some problems are easier if you are not "pythonic".

*Python might be faster:

  • Automatic GC. C++ is only faster if it doesn't leak too much.
  • Dictionaries. Lots of code runs in O(N plus a bit), rather than O(N^2) if you use a dictionary. Sure, you can use a hash table in C++, but not everbody does.
  • Memory management - the python interpreter caches some of the basic data structures' memory, then reallocates them, rather than hitting the system for new memory. This reduces system calls, which is a very good thing.
  • Profiling new algorithms is waaaay easier on python. In lots of problems, a better algorithm is more important than a linear speedup (which is what C++ gives you).
  • If you are making a program that "only runs once" (scientific analysis, data migration, etc), then the compile-build-test cycle should be faster in python. That's what really counts ;)
link|flag
1  
The reference to "O(N plus a bit)" vs. "O(N^2)" is misguided. (The gist is reasonably well intended but mis-use of big-O (computational order of complexity) expressions will undermine your credibility. Operations on dictionary (hash tables) are O(1) (near constant time). Searches through arrays (simpler to implement in C programs, for example) are O(n) (linear) time. Binary searches are O(log(n)) (logarithmic) time. Matrix operations are frequently O(n**2) (quadratic) time and things like qsort of O(n*log(n)). Study that list and use them correctly to maximize your credibility. – Jim Dennis Nov 25 at 6:34
I know that. But the code that often matters is things like "for all nodes, find the duplicates". That is O(N plus a bit) if you use dictionaries, and O(N^2) if you use a list. The "plus a bit" is because dictionaries get a smaller packing ratio when they get bigger (thus a few more collisions). Sorry, I didn't explain that too well. – wisty Nov 25 at 15:35
vote up 0 vote down

Learn a statically typed language and a scripting language.
You can do whatever you want in either language. A well-written C++ code base is easier to maintain/debug than a Python code base written with the same level of competency.

If your goal is to do web stuff or scripting, Python is for you. Anything more advanced will require C++.

That being said, go for Python.

link|flag
1  
You can write more advanced applications in Python. Mercurial, BitTorrent, and Gentoo's Portage are just a few more complex apps written in Python. – mipadi Nov 25 at 5:58
you CAN write more complicated applications in Python. python.org/about/success But given a choice, you probably wouldn't – George Nov 25 at 19:02
I disagree about the large project issue. I'm not certain that either one is easier, but from all my reading on this issue, neither is anyone else. There are plenty of concrete reasons to choose Python over C++ (or vice versa), but maintenance/debug being easier in C++, as far as I can tell, a matter of opinion. – Edan Maor Nov 27 at 17:19
vote up 0 vote down

As others have suggested: learn Python to study algorithms and higher level concepts and use it for prototyping and for places where you can. Learn C/C++ and/or Java for the job market and for cases where you must use it.

Python's vastly easier syntax and high level libraries allow you to focus on interfaces and abstractions while still having a functional prototype.

link|flag
vote up 0 vote down

One significant difference not so far mentioned is the difference between a language like C++ that builds to native code, and a language like Python which by default puts a VM between you and the hardware. For doing low-level work, like coding against the OS kernel, the native language will be the preferred option.

In practise, though, when you're working in that context it usually means dropping all the way down C (in its role as portable assembler) rather than being able to use C++ (and its runtime libraries), for much if not all of the code.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.