file = open('english.txt','r')
vowels = ('a', 'e', 'i', 'o', 'u')
for text in file:
translated= []
lines = text.split()
print(' '.join(lines))
print("Translated to pig latin becomes:")
for words in lines:
if words[0] in vowels:
words = words + 'yay'
else:
while words[0] not in vowels:
words = words[1:] + words[0]
words = words + 'ay'
translated.append(words)
words = ' '.join(translated)
print(words, '\n')
我得到的结果是:
this is a statement
Translated to pig latin becomes:
isthay isyay ayay atementstay
its going through python
Translated to pig latin becomes:
itsyay oinggay oughthray onpythay
and this is the result
Translated to pig latin becomes:
andyay isthay isyay ethay esultray
the end
Translated to pig latin becomes:
ethay endyay
我想在每一节中都有第一行和第三行来引用它们。例如“结束”“ethay endyay”
谢谢!