I need the code to ask the user to enter a word and print them out in a sentence once stop is entered. I have the following code:
`a = input("Enter a word: ")
sentence = ()
while a != ("stop"):
sentence = sentence , a
a = input("Enter a word: ")
print (sentence)`
However I don't know how to set the variable 'Sentence' so that nothing prints at the start. How can I rectify this?