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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!