Python vs c++

calspider

New member
If some body want to learn programming then please tell what languages they should start from . Some body please tell difference between python vs c++ . Which one of them is hard to learn and what will be the benefits and advantages of one over the other.
 
Languages like Java and Python are great for beginners, and they have a wide range of applications.

->Difference between Python and C++:
(i)Code
-Python has fewer lines of code, C++ tends to have long lines of code.

(ii)Compilation
-Python is interpreted, C++ is precompiled.

(iii)Speed
-Python is slower since it uses an interpreter and also determines the data type at run time. C++ is faster once compiled as compared to python.

(iv)Application domain
-Python: Web development, data analysis, scientific computations, etc
-C++: Game development, embedded systems, etc

->Advantages of Python over C++:
-Clean, straightforward syntax
-Duck typing
-Huge standard library
-Great support for building web apps
 
Back
Top