numpy documentation realpython

Solutions on MaxInterview for numpy documentation realpython by the best coders in the world

showing results for - "numpy documentation realpython"
Hannah
22 Jan 2020
1>>> import numpy as np
2>>> x = np.float32(1.0)
3>>> x
41.0
5>>> y = np.int_([1,2,4])
6>>> y
7array([1, 2, 4])
8>>> z = np.arange(3, dtype=np.uint8)
9>>> z
10array([0, 1, 2], dtype=uint8)
11