请帮我!
我正在将具有多行的文本文件转换为猪拉丁语。
例子:Pig 拉丁语翻译:这是一个例子。应该是:Histay siay naay xampleeay。
我需要将任何标点符号留在应有的位置(在大多数情况下是句子的结尾)我还需要在原文中以大写字母开头的任何单词在拉丁语版本中以大写字母开头,其余的字母小写。
这是我的代码:
def main():
fileName= input('Please enter the file name: ')
validate_file(fileName)
newWords= convert_file(fileName)
print(newWords)
def validate_file(fileName):
try:
inputFile= open(fileName, 'r')
inputFile.close()
except IOError:
print('File not found.')
def convert_file(fileName):
inputFile= open(fileName, 'r')
line_string= [line.split() for line in inputFile]
for line in line_string:
for word in line:
endString= str(word[1:])
them=endString, str(word[0:1]), 'ay'
newWords="".join(them)
return newWords
我的文本文件是:
This is an example.
My name is Kara!
程序返回:
Please enter the file name: piglatin tester.py
hisTay
siay
naay
xample.eay
yMay
amenay
siay
ara!Kay
None
我如何让他们在他们所在的行中打印出来?还有我该如何处理标点符号和大写?