rougier / numpy-100

100 numpy exercises (with solutions)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Solution for 9th question(Answers of 9th and 10th questions is accidently the same in solution list)

AmalChandru opened this issue · comments

  1. Create a 3x3 matrix with values ranging from 0 to 8 (★☆☆)
    ANS: a = np.arange(0,9).reshape(3,3)
    print(a)

Thanks have a good-day!

Oh yes, thanks. Can you make a PR?