Python Numpy
Introduction to Numpy
HISTORY
Create Numpy Arrays
Example
#Creating Numpy Array import numpy as np a = np.array([1, 2, 3, 4, 5])
print(a)
Output:
[1 2 3 4 5]