+1 vote
in NumPy by
insert 1 to 100 numbers and formated with 10*10

1 Answer

0 votes
by

insert 1 to 100 numbers and formated with 10*10

num = np.arange(1,101).reshape(10,10)

print(‘\n reshape after\n’,num)

Related questions

+1 vote
asked Jul 9, 2021 in NumPy by rajeshsharma
+1 vote
asked Oct 22, 2021 in Artificial Intelligence by DavidAnderson
...