What? The only thing they have in common is the possibility of object oriented code??? And that's only achieved in Python through metaprogramming???
No and no.
What do they have in common? Both are general purpose languages that support elements of procedural, object-oriented and functional programming paradigms, easily mixing all three styles. Both have an ALGOL-based syntax.
Python is notable for enforcing block structure with whitespace (indentation).
C++ is notable for its backwards compatibility with the C language.
The two most noticeable differences are A) Python (CPython specifically) is an interpreted language whereas C++ is (typically) compiled, and B) Python is a dynamically-typed language while C++ is statically typed.
Various tools makes it easy extend Python with modules written in C++. And the CPython interpreter can be embedded in C++ applications.
The best place for Python examples is here:
http://docs.python.org/tutorial/
The best place to ask for help is here:
http://groups.google.com/group/comp.lang.python/topics
I'm sure others can add considerably to this, but these are the key points for me.
Edit: And what filipe said.