python-scipyHow can I use the x.shape function in Python Numpy?
The x.shape function is a part of the NumPy library in Python and is used to find the shape of an array. It returns a tuple of the form (rows, columns), where rows is the number of rows and columns is the number of columns in the array.
Example
import numpy as np
x = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
x.shape
Output example
(3, 3)
The code above imports NumPy as np and creates an array x with three rows and three columns. Then the x.shape function is used to find the shape of the array x, which is (3, 3).
Code explanation
import numpy as np: imports the NumPy library and assigns it to the aliasnpnp.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]): creates an arrayxwith three rows and three columnsx.shape: finds the shape of the arrayx
Helpful links
More of Python Scipy
- How do I uninstall Python Scipy?
 - How can I check if a certain version of Python is compatible with SciPy?
 - How do I create a 2D array of zeros using Python and NumPy?
 - How do I use Scipy zeros in Python?
 - How can I use Python and Numpy to zip files?
 - How do I use Python Numpy to read and write Excel (.xlsx) files?
 - How can I use Python and SciPy to find the zeros of a function?
 - How can I use Python and SciPy to extrapolate data?
 - How can I use Python Scipy to zoom in on an image?
 - How do I calculate the cross-correlation of two arrays using Python and NumPy?
 
See more codes...