Solid Rectangle - 2
Write a Python program of Solid Rectangle - 2. It consists of two test cases
The below link contains Solid Rectangle - 2 - Question, explanation and test cases
https://drive.google.com/file/d/1V8bS9t2PaO1gOhz3QSWNJfnTkCZnncf3/view?usp=sharing
We need all test caese can be come while code was running
rows, columns = int(input()), int(input())
[print('+ ' * columns) for _ in range(rows)]
Comments
Leave a comment