for_iteration
unknown
python
a year ago
122 B
7
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()