+ 2
Why python is slow and C is fast?
1 Answer
+ 3
Because the python is interpreted, that is, read from top to bottom, this is what takes so long. C is compiled, that is, it is instantly translated into binary code, that is, in ones and zeros, and this takes very little time