import numpy as np
shape = (5,5)
# start coding here...
a =
print(a)
# expected output:
# [
# [0. 1. 2. 3. 4.],
# [0. 1. 2. 3. 4.],
# [0. 1. 2. 3. 4.],
# [0. 1. 2. 3. 4.],
# [0. 1. 2. 3. 4.]
#]
Python
Setting up Python environment...
Output