Computer Science, asked by unknown6766654, 5 months ago

Write a program to print your name 5 times using any of the loops.​

Answers

Answered by AdityaSingh2746
0

# For example

name = 'Rohan'

i = 0

while i <= 5:

print(name)

i++

Similar questions