Glad to see that Cython got a shout out here. It's not that widely used, but it's a lovely experience. It uses the CPython ABI to drastically reduce the friction of switching between C & Python.
voidUpdate 2 hours ago [-]
> import numpy
> np.array([1,2])
NameError: name 'np' is not defined
I think the article probably wanted "import numpy as np"
21gafg 2 hours ago [-]
[dead]
Rendered at 16:38:16 GMT+0000 (Coordinated Universal Time) with Vercel.
> np.array([1,2])
NameError: name 'np' is not defined
I think the article probably wanted "import numpy as np"