Question: Case You have been tasked to create a program that draws a box. Your program needs to ask the user for the dimensions of the
Case
You have been tasked to create a program that draws a box. Your program needs to ask the user for the dimensions of the box or length and width. The program will then print out your box.
Since the dimensions of the box will vary each time you run the program, here is a sample output when the user entered 5 for the box width and 10 for the box length.
********** * * * * * * **********
This is my code I am entering, but doing something wrong.....
width = int(input("Enter the width of your box: ")) length = int(input("Enter the length of your box: ")) border = '*' + ' ' + '*' print() while width != length: print(width * '*') print(border)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
