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
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()
Comments
Leave a comment