English
深色模式
Automatically compile Python functions into high-performance machine code using @jit or @njit .
@jit
@njit
pip install numba
from numba import njit @njit def add(a, b): return a + b print(add(1, 2)) # Output: 3
cb81f0c