C++ could be interpreted like python, and python could be compiled like C++. The thing is, interpreted C++ would be quite a bit slower than compiled C++ (though some debuggers will interpret C++) and compiled python wouldn't be much faster.
The real difference between the languages is how fast the resulting code is.
C++ is pretty low level (though it has some pretty high level constructs too, it is a huge language). It gives you extreme control over what the processor does and it limits how flexible your code can be so the compiler can do amazing things to speed up your program.
Python on the other hand is extremely flexible, but the flexibility comes at a huge cost in performance. A compiler cannot statically analyze (determine before running) what the program might do because anything can change. Since it cannot statically analyze things, there are very few optimizations.
Take the following example in C++
void foo(int a[], int n) {
for (int i = 0; i < n; i++)
a[i] = n * 100;
}
Any C++ compiler will take the n * 100 and move it outside the loop calculating the value just once.
The equivalent Python program:
def foo(a, n):
for i in xrange(len(a)):
a[i] = n * 100
In this case, python will not take n * 100 and move it out of the loop because someone may have overridden __mul__ for whatever type n may be.