Declare a 4 x 5 list called N.

Using for loops, build a 2D list that is 4 x 5. The list should have the following values in each row and column as shown in the output below:

1 3 5 7 9
1 3 5 7 9
1 3 5 7 9
1 3 5 7 9
Write a subprogram called printList to print the values in N. This subprogram should take one parameter, a list, and print the values in the format shown in the output above.

Call the subprogram to print the current values in the list (pass the list N in the function call).

Use another set of for loops to replace the current values in list N so that they reflect the new output below. Call the subprogram again to print the current values in the list, again passing the list in the function call.

1 1 1 1 1
3 3 3 3 3
5 5 5 5 5
7 7 7 7 7

Declare a 4 x 5 list called N Using for loops build a 2D list that is 4 x 5 The list should have the following values in each row and column as shown in the out class=