Write a program to print your name 5 times using any of the loops.
Answers
Answered by
0
# For example
name = 'Rohan'
i = 0
while i <= 5:
print(name)
i++
Similar questions