Write a program that asks your name and displays its first characters 10 times.
Answers
Answered by
1
Answer:
a=input("Enter the name:")
print(a*10)
Similar questions