Computer >> Máy Tính >  >> Lập trình >> Python

Tìm số hàng và số cột trong một ma trận nhất định bằng Numpy

Đầu tiên chúng ta sẽ tạo một ma trận numpy và sau đó tìm ra số lượng hàng và cột trong ma trận đó

Thuật toán

Step 1: Create a numpy matrix of random numbers.
Step 2: Find the rows and columns of the matrix using numpy.shape function.
Step 3: Print the number of rows and columns.

Mã mẫu

import numpy as np

matrix = np.random.rand(2,3)
print(matrix)
print("Total number of rows and columns in the given matrix are: ", matrix.shape)

Đầu ra

[[0.23226052 0.89690884 0.19813164]
 [0.85170808 0.97725669 0.72454096]]
Total number of rows and columns in the given matrix are:  (2, 3)