NumPy shape

1 개요[ | ]

NumPy shape
Python
Copy
import numpy as np
a = np.array( [1,2,3,4] )
print( a.shape )
Loading
Python
Copy
import numpy as np
a = np.array( [ [1,2,3], [4,5,6] ] )
print( a.shape )
Loading

2 같이 보기[ | ]