We cean store data like this:
test_1 = np.array([92, 94, 88, 91, 87])
test_2 = np.array([79, 100, 86, 93, 91])
test_3 = np.array([87, 85, 72, 90, 92])
Or in two-dimensional array:
np.array([[92, 94, 88, 91, 87],
[ 79, 100, 86, 93, 91],
[87, 85, 72, 90, 92]])
this is not two-demensional array:
np.array([[29, 49, 6],
[77, 1]])