Python NumPy program to create a 3×3 matrix

In this python numpy program, we will create a 3×3 matrix using NumPy.

Steps to solve the program
  1. Import the numpy library as np.
  2. Create 3×3 matrix using np.array().
  3. Print the output.
				
					import numpy as np
x = np.array([[1,2,3],[4,5,6],[7,8,9]])

print(x)
				
			

Output :

				
					[[1 2 3]
 [4 5 6]
 [7 8 9]]
				
			

create an array of integers between 1-100 by the difference of 6 between them.

create a 3×3 identify matrix.

Leave a Comment