我需要我的 pyglatin 翻译器返回“ellohay, orldway”。当我输入“你好,世界”时。但是,我不确定需要插入什么代码才能让它做我想做的事。这就是我到目前为止所拥有的;
pyg = 'ay'
input = raw_input("Please enter a sentence:")
print input
if len(input) > 0:
input = input.lower()
phrase = input.split( )
pyg_words = []
for item in phrase:
if item.isalpha():
first = item[0]
item = item[1:] + first + pyg
pyg_words.append(item)
print ' '.join(pyg_words)