Discovering NumPy
#install numpy package
pip3 install numpy
# Import the numpy package as np
import numpy as np
baseball = [180, 215, 210, 210, 188, 176, 209, 200]
# Create a numpy array from baseball: np_baseball
np_baseball = np.array(baseball)
# Print out type ...
katsumikari.hashnode.dev5 min read