5 lines
68 B
Python
5 lines
68 B
Python
|
import numpy as np
|
||
|
|
||
|
aa = np.array([1,2,3,4,5,6,7,8,9,10])
|
||
|
|
||
|
print(aa)
|