for_iteration
unknown
python
2 years ago
122 B
8
Indexable
row = int(input())
col = int(input())
for r in range(row):
for c in range(col):
print('*', end = ' ')
print()Editor is loading...
Leave a Comment
row = int(input())
col = int(input())
for r in range(row):
for c in range(col):
print('*', end = ' ')
print()