Question: Your Python program will ask the user to enter a number of rows and a number of columns, and will then print even numbers starting

Your Python program will ask the user to enter a number of rows and a number of columns, and will then print even numbers starting at O in a grid of the given size (rows by columns) Here is what your program should look like if the user enters 5 rows and 3 columns (user input is in red): Enter number of rows: 5 Enter number of columns: 3 Here is your pattern: 0 2 4 6 8 18 12 14 16 18 20 22 24 26 28 Once your program matches the example above, add an if-statement that lets each position take up the same amount of space. If the number you just printed has just one digit (i.e., if it is less than 10), print an extra space after it. (You may assume that no numbers will ever have three digits.) Here is what your new program should look like if the user enters 6 rows and 4 columns (again, user input is in red): Enter number of rows: 6 Enter number of columns: 4 Here is your pattern: 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
