Difference between Python float and numpy float32

Python’s standard float type is a C double: http://docs.python.org/2/library/stdtypes.html#typesnumeric

NumPy’s standard numpy.float is the same, and is also the same as numpy.float64.

Leave a Comment