Computer Science, asked by Anonymous, 11 months ago


FOR PYTHON PROGRAMMERS :-

Q).write a numpy program to create a 3×3 matrix with values ranging from 2 to 10.

Answers

Answered by bhuwanpaneru
5

Explanation:

import numpy as np

x = np.arange(2, 11).reshape(3,3)

print(x)

Similar questions