Write a program to print the string entered by the user 5 times.
Answers
Answered by
5
l=input('enter a word')
print(l*5)
Answered by
1
Answer:
St= "where is my mobile"
for i in St.split():
if i.startswith("m"):
print(i)
Similar questions