Answer to Problem 4

Answer to Looping Problem 04
1
2
3
4
for i in range(10):
    for j in range(5):
        print("*", end=" ")
    print()