Codecademy pig latin コンバーターを拡張して、単一の単語ではなく文を受け入れ、文の各単語を変換できるようにしようとしています。私が持っているコードは次のとおりです。
pyg = 'ay'
pyg_input = raw_input("Please enter a sentence: ")
print
if len(pyg_input) > 0 and pyg_input.isalpha():
lwr_input = pyg_input.lower()
lst = lwr_input.split()
for item in lst:
frst = lst[item][0]
if frst == 'a' or frst == 'e' or frst == 'i' or frst == 'o' or frst == 'u':
lst[item] = lst[item] + pyg
else:
lst[item] = lst[item][1:len(lst[item]) + frst + pyg
print ' '.join(lst)
何が悪いのかわからないので、助けていただければ幸いです。ありがとう