4. Advanced PythonIV. Performance And Optimization36. JIT with NumbaOn this page36. JIT with Numba Numba uses JIT compilation to speed up numerical functions. Example from numba import jit@jit(nopython=True)def add(a, b): return a + bprint(add(2, 3)) Wrap-Up Numba accelerates numerical Python code with minimal changes.