while_loop_iterating

mail@pastecode.io avatar
unknown
python
a year ago
146 B
4
Indexable
x = int(input())
y = int(input())

while x > 0:
    col = y
    while col > 0:
        print('*', end=' ')
        col -= 1
    print()
    x -= 1
Leave a Comment