Computer Science, asked by Avinashshirsat3986, 1 day ago

Write a program to print "*" five times using DO...WHILE LOOP.

Answers

Answered by somnath91101
1

Answer:

for x in range(0, 5):

print("*")

Similar questions