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

...