Answer to Question #220962 in Python for Hari nadh babu

Question #220962

Solid Rectangle - 2


This Program name is Solid Rectangle - 2. Write a Python program to Solid Rectangle - 2, it has two test cases


The below link contains Solid Rectangle - 2 question, explanation and test cases


https://drive.google.com/file/d/1wbpSRbuN1zsktqN5LIQS5vwRV2kwkrU1/view?usp=sharing


We need exact output when the code was run

1
Expert's answer
2021-08-04T04:07:56-0400
rows = int(input("Please Enter the Total Number of Rows  : "))
columns = int(input("Please Enter the Total Number of Columns  : "))


print("Rectangle Star Pattern") 
for i in range(rows):
    for j in range(columns):
        print('+', end = '  ')
    print()

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS