import numpy as np
# create the following array
# [
# [ 9 9 9 9 9 ],
# [ 9 0 0 0 9 ],
# [ 9 0 1 0 9 ],
# [ 9 0 0 0 9 ],
# [ 9 9 9 9 9 ],
# ]
# create array here (you will need multiple lines)
a =
print(a)
Python
Setting up Python environment...
Output