Computer Science, asked by Mayanksharms, 4 months ago

Write a program to print the string entered by the user 5 times.​

Answers

Answered by Sandradutta05
5

l=input('enter a word')

print(l*5)

Answered by viji18net
1

Answer:

St= "where is my mobile"

for i in St.split():

   if i.startswith("m"):

       print(i)

Similar questions