In this video, we have done a little experiment of counting to see if either C++ or Python is faster as comapred to each other. C++ is always faster than Python because it is a compiled language comapred to Python which is an interpreted language. C++ is statically typed while Python is dynamically typed. C++ has manual memory management whereas Python has auto memory management. We have counted the numbers from 0 to 10 lac in both C++ and Python. The result shows that C++ is faster than Python if C++ code is optimized otherwise maybe Python is faster than C++.
#c++ #python #c++vspython