我正在服用一個句子並將它變成拉丁語,但是當我編輯列表中的單詞時,它永遠不會停留。需要編輯for循環中的列表。 [Python}
sentence = input("Enter a sentence you want to convert to pig latin")
sentence = sentence.split()
for words in sentence:
if words[0] in "aeiou":
words = words+'yay'
當我打印句話我得到我放在同一個句子。