Tutorial to convert python code to cython · from math import sin def f(x): return sin(x**2) def integrate_f(a, b, N): s = 0 dx = (b-a)/N for i in range(N): s += ...
確定! 回上一頁