编写一个函数file_in_english(filename,character_limit),该函数采用文件名(作为str)和character_limit(作为int)。文件名是要从Cat Latin转换为英语的文件的名称,字符数限制是可以转换的最大字符数。限制是输出中的字符总数(包括换行符)。
该函数应返回一个字符串,该字符串包含与文件相同顺序的所有转换后的行-请记住每行末尾的换行符(请确保在每行转换后的末尾都包含换行符)使其包含在行的长度中。
如果超过了限制(即,转换后的句子将使输出超过限制),那么将字符数超过限制的句子不应添加到输出中。应该在输出末尾添加带有“ <>”的行。然后应该停止行的处理。
文件中的每一行都将是一个古怪的拉丁文句子,您的程序应打印出每个句子的英文版本
该功能应不断添加句子,直到用尽文件输入或打印的字符总数(包括空格)超过限制为止。
答案必须包括您对english_sentence的定义及其辅助功能-我应该称其为english_word或类似名称。
您必须在file_in_english函数中使用。
每个函数只能使用一个return语句。
示例(test1.txt)中使用的测试文件具有以下数据:
impleseeoow estteeoow aseceeoow
impleseeoow estteeoow aseceeoow ineleeoow 2meeoow
impleseeoow estteeoow aseceeoow ineleeoow 3meeoow
impleseeoow estteeoow aseceeoow ineleeoow 4meeoow
我的程序工作正常,但有时返回None。
def english_sentence(sentence):
"""Reverse Translation"""
consonants = 'bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ'
eng_sentence = []
for coded_word in sentence.split():
if coded_word.endswith("eeoow") and (coded_word[-6] in consonants):
english_word = coded_word[-6] + coded_word[:-6]
if (coded_word[-6] == 'm') and (coded_word[0] not in consonants):
english_word = '(' + english_word + ' or ' + coded_word[:-6] + ')'
eng_sentence.append(english_word)
return " ".join(eng_sentence)
def file_in_english(filename, character_limit):
"""English File"""
newone = open(filename)
nowline = newone.readline()
characters = 0
while characters < character_limit and nowline != "":
process = nowline[0:-1]
print(english_sentence(process))
characters += len(nowline)
nowline = newone.readline()
if characters > character_limit:
return("<<Output limit exceeded>>")
ans = file_in_english('test1.txt', 20)
print(ans)
输出为:
simple test case
simple test case line (m2 or 2)
simple test case line (m3 or 3)
simple test case line (m4 or 4)
None
但是我必须在每个函数中仅使用一个return语句。我该如何为第二个功能做到这一点,并避免输出中出现“无”?
答案 0 :(得分:0)
您正在做的事情与
相同def f():
print('hello')
print(f())
因此基本上可以缩小为:
print(print('hello world'))
也顺便说一句:
>>> type(print('hello'))
hello
<class 'NoneType'>
>>>
要解决您的代码,请执行以下操作:
def file_in_english(filename, character_limit):
s=""
"""English File"""
newone = open(filename)
nowline = newone.readline()
characters = 0
while characters < character_limit and nowline != "":
process = nowline[0:-1]
s+=english_sentence(process)+'\n'
characters += len(nowline)
nowline = newone.readline()
if characters > character_limit:
s+="<<Output limit exceeded>>"
return s
ans = file_in_english('test1.txt', 20)
print(ans)
答案 1 :(得分:0)
您必须确保任何应返回内容的函数都以函数可以结束的所有方式执行此操作。
函数file_in_english
仅在if characters > character_limit:
情况下返回
如果charachter ==
或charachter < character_limit
不是(strong)情况,则该函数未明确返回任何内容。
任何函数最终不会从中返回任何内容,而是在返回到其调用方时隐式返回None
。
def something(boolean):
"""Function that only returns something meaninfull if boolean is True."""
if boolean:
return "Wow"
print(something(True)) # returns Wow
print(something(False)) # implicitly returns/prints None
您可以找到这个事实。在python教程中:
来自其他语言,您可能会反对fib不是 函数,但是是一个过程,因为它不返回值。事实上, 即使没有return语句的函数也确实会返回值,尽管 相当无聊。此值称为“无”(这是一个内置名称)。 通常,如果解释器禁止写入值None, 将是唯一写入的值。如果您真的想要,可以看到它 使用print():
来源:https://docs.python.org/3.7/tutorial/controlflow.html#defining-functions-在第二个绿色示例框后不久