Computer Science, asked by bhattacharyadebasree, 1 day ago

write a program to display my name 10 times in basic256​

Answers

Answered by samarthkrv
0

Answer:

name = input("What is your name? \n")

for i in range(10):

   print("Name: " , name)

Explanation:

Similar questions