Computer Science, asked by fm594014, 4 days ago

write a program that prints your name 100 times

Answers

Answered by dayanidhisharma19
0

Answer:

                   You can do it by multiplying the string by 100.

PROGRAM:-

name=”Your_Name”

print(name*1000)

If you want to print every name in new line you can try :

name=”Your Name\n”

print(name*1000)

END THE PROGRAM

Similar questions