write a program to print the given input word 3 times in a single line separated by spaces.
write a program to print the given input word 3 times in a single line separated by spaces.
word = input()
print((word+" ")*3)
write a program to print the given input word 3 times in a single line separated by spaces.
word = input()
print((word+" ")*3)
Comments
Post a Comment