+ 1
Some people say that Python is slow. What do they exactly mean?Is python slow in code execution or something?
4 Antworten
+ 5
Python is slower than C because it is an interpreted language. This amplifies the number of actual CPU instructions required in order to perform a given statement. ... The difference is that the python code will be interpreted, instead of directly by the CPU.
+ 4
Welcm
+ 3
Python is slow compared to C, C++, Java. It is slow in execution. Mainly because it is dynamically typed language.
+ 2
Thanks dude👍