This just a (very) small comparison between Python and Cython for computing the Fibonacci suite and prime numbers.
- Fibonacci :
Python : 11.85 s Cython : 6.91e-6 s
Cython is 1e7 times faster than Python
- Prime numbers
Python : 21.82 s Cython : 3.08 s
Cython is 7 times faster than Python