我正在编写一个莫尔斯代码,将文本转换为莫尔斯,将莫尔斯转换为文本。我已经走得很远了。我留下的问题是如何打印它,也许是一种更聪明的方法来处理错误。
我希望代码的输出符合实际的写作规则。所以,如果输入是'你好,你好吗?非常感谢!“在莫尔斯,我希望输出为'你好,你好吗?非常感谢!',在文中。
首先我认为我只需要操纵from_morse和to_morse函数中的返回值。就像这样:
value[0]+value[1:].lower()
但这只是涵盖了大字符而不是新句子的开头。
但是创建一个控制返回值的函数是一种更好的方法,还是应该将控件包含在我的函数中?在那种情况下,我该怎么做?
以下是代码:
tomorse = { } (is a dict with text-Values and morse-Keys. in upper() stile)
frommorse = dict((b,a) for a,b in tomorse.items())
def from_morse(text):
value = ''
for word in text.split(' '):
if word == '':
value += ' '
#split the line into words
for char in word.split():
#split the word into characters
if char in frommorse:
value += frommorse[char].upper()
else:
print('Value for' ,char,' not found as morse.')
return value
def to_morse(text):
value = ''
for char in text:
if char in tomorse:
value += tomorse[char] + ' '
elif char == ' ':
value += ' '
else:
print('Value for' ,char, 'not found as character.')
break
return value
def text_controll():
while True:
try:
text = input('Enter what you want to convert: ').upper()
if text.startswith(('.','-')):
print('Your translation to text is:',from_morse(text))
else:
print('Your translation to morse is: ',to_morse(text))
except (EOFError,KeyboardInterrupt):
print('Thanks and Godbye!')
break
text_controll()
答案 0 :(得分:0)
为了您自己的理智from_morse
和to_morse
应该按照他们的意思行事:根据需要转换为文字和莫尔斯。
然后,您可以编写另一个函数,将句子转换为带有大写和标点符号的句子。
您可以通过查找点,感叹号和问号来检测句子的结尾。然而有人也可以写“你好吗???”这意味着你不想检测句子“你好吗?”,“?”和“?”。换句话说:你还需要检测可以结束句子的字符序列。
另一个问题是有人可能会在句子中使用标点符号,例如提及公司名称Yahoo !.