#NumPy as np
#NumPy is usually imported under the np alias
#Therefore, Now the NumPy package can be referred to as np instead of numpy. We've to keep in mind it👀
#NumPy is usually imported under the np alias
import numpy as np
arr = np.array([1,2,3,4,5])
print(arr)
#Therefore, Now the NumPy package can be referred to as np instead of numpy. We've to keep in mind it👀