week-4 #5

Merged
Kenwood merged 12 commits from week-4 into master 2021-02-03 16:53:55 -05:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit d592cc5b0b - Show all commits

8
4/4.8/4.8.1/main.py Normal file
View File

@ -0,0 +1,8 @@
num_rows = int(input())
num_cols = int(input())
for _i in range(num_rows):
print('*', end=' ')
for _i in range(num_cols - 1):
print('*', end=' ')
print()