for_iteration

Anonymous
python
02/12/2024 2:40 AM
164 B
24
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