Question Description
Develop a python program to
– Create a 2D 10×10 numpy array and fill it with the random numbers between 1 and 9 (including 0 and 9).
– Assume that you are located at (0,0) (upper-left corner) and want to move to (9,9) (lower-right corner) step by step. In each step, you can only move right or down in the array.
– Develop a function to simulate random movement from (0,0) to (9,9) and return sum of all cell values you visited.
– Call the function 3 times to show current the sum.
Note 1: 2D numpy array will be created and randomly filled just once.
Note 2: You cannot move out of array, up, or left.