这是我的 fun.pyx 文件
cimport cython
@cython.boundscheck(False)
cdef long long int extr():
cdef long long int i=0;
while i<=20000000000:
i=i+1
return i
def fn():
return extr()
这是我的 test.py 文件
from fun import fn
import time
t1=time.time()
print(fn())
print(time.time()-t1)
但是运行这个之后,我发现与python程序相比,速度只提高了3%。如何优化这个程序?任何建议都会有所帮助。提前致谢。