Computer Science, asked by rishimenon1855, 9 months ago

Write an algorithm to print your name 10 times

Answers

Answered by Appledinger
1

Answer:

in python

Explanation:

for i in range(10):

print("Your Name")

Similar questions