Question: Print rectangle size of user input) Write a program that print out a rectangle box of size M*N. M is the row size, N is
Print rectangle size of user input) Write a program that print out a rectangle box of size M*N. M is the row size, N is the column size. M and N value are two user inputs. (Hint: Only printed out the borders. Notice that you have 4 borders, each border can be defined using one if statement. For example, 1st row is y==0, 1st column is x==0, last row is y==rowsize 1, last column is x==columnsize 1)
Output example:
Please type in row size: 4
Please type in column size: 5
*****
* *
* *
*****
Please do not plagiarize and this is on PYTHON 3.8, thank you!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
