+ 1
difference between python and c++
3 Answers
+ 4
C++ is compiled, while Python is interpreted. That means C++ code is first translated and then can be executed. Python code is executing at the same time when computer is reading it. This causes that C++ is much faster and that's why it is used to perform hardware operations and so. Python is better for smaller applications, coding of websites back-end. Python has cool packages for interaction with web and other great things. C++ has STL (standart template library), which has so many functions to perform calculations, manipulations with arrays, data structures, bit operations etc. In my opinion, these two languages are best to learn nowadays (it depends on what you want do do, of course). After short time of using both languages you will exacly know, which language to choose for which task.
- 1
C++ is faster and for c++ exists more lib-s.
- 3
Simple and complex. đ