Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Numpy를 사용하여 주어진 행렬의 행과 열 수 찾기

<시간/>

먼저 numpy 행렬을 만든 다음 해당 행렬의 행과 열 수를 찾습니다.

알고리즘

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.

예시 코드

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)

출력

[[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)