- 1
Write a program that will ask the user for a message and the number of times they want that message displayed.
3 Answers
+ 3
typeof (language) # in the future
+ 2
what language
0
message=input("Enter a message ")
num=int(input("How Many times? "))
print((message+"\n")*num)