FOR PYTHON PROGRAMMERS :-
Q).write a numpy program to create a 3×3 matrix with values ranging from 2 to 10.
Answers
Answered by
5
Explanation:
import numpy as np
x = np.arange(2, 11).reshape(3,3)
print(x)
Similar questions
Computer Science,
6 months ago
English,
6 months ago
Math,
11 months ago
Physics,
11 months ago
Chemistry,
1 year ago