Answer to Problem 5

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