Write a program to print "*" five times using DO...WHILE LOOP.
Answers
Answered by
1
Answer:
for x in range(0, 5):
print("*")
Similar questions