I was practicing some coding and I decided to make a parrot translator. The basic point of this game is, that after every word in a sentence, you should put the syllable "pa". I had written the code for that:
print("This is the PARROT Translator!")
original = input("Please enter a sentence you want to translate: ")
words = list(original.split())
for words in words:
print(words + "pa")
but the problem I have and I dont know how to fix is, when I split the sentence, the output wont be in the same line, but every word will be at it's own.