为什么我的摩尔斯电码解码工具找不到任何后续字符?

Why does my Morse Code decoding tool not find any subsequent characters?

我正在研究摩尔斯电码编码/解码工具。我已经完成了编码器,我正在研究解码器。目前解码函数“MorseCodeDecoder(MSG)”一次只能解码一个字母。它通过一个一个地检查字符串中的每个字符并将它们复制到变量“EncodedLetter”来实现这一点。程序检查每个字符,看它是否是 space,如果是则程序识别这个字母之间的空隙,例如: MSG = ".... .." -*the function runs*- EncodedLetter = "....". 然后通过字典(使用列表)反向搜索该值以找到 EncodedLetter 的键应该是什么,在本例中它是“H”,程序还检查代表 space 的双 spaces两个字。在这个时候,它可能听起来功能齐全;然而,在找到一个编码字母后,它找不到另一个,所以之前的“.... ..”它找不到“..”,即使我在它成功解码一个字母后重置了变量。

MorseCodeDictionary = {' ': ' ', 'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.', 'G': '--.', 'H': '....', 'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..', 'M': '--', 'N': '-.', 'O': '---', 'P': '.--.', 'Q': '--.-', 'R': '.-.', 'S': '...', 'T': '-', 'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-', 'Y': '-.--', 'Z': '--..', '1': '.----', '2': '..---', '3': '...--', '4': '....-', '5': '.....', '6': '-....', '7': '--...', '8': '---..', '9': '----.', '0': '-----'}

def MorseCodeEncoder(MSG):
    EncodedMSG = f"""Encoded Message:
"""
    MSG = MSG.upper()
    for i in range(0, len(MSG), 1):
        Encode = (MSG[i])
        EncodedMSG = f"{EncodedMSG} {(MorseCodeDictionary.get(Encode))}"
    return EncodedMSG
def MorseCodeDecoder(MSG):
    DecodedMSG = f"""Decoded Message:
"""
    MSG = MSG.upper()
    DecodedWord = ''
    DecodedLetter = ''
    EncodedLetter = ''
    for i in range(0, len(MSG)):
        DecodedLetter = ''
        Decode = (MSG[i])
        try:    
          if (MSG[i + 1]) == ' ':
            EncodedLetter = f"{EncodedLetter + (MSG[i])}"
            DecodedLetter = list(MorseCodeDictionary.keys())[list(MorseCodeDictionary.values()).index(EncodedLetter)]
            DecodedWord = DecodedWord + DecodedLetter
            EncodedLetter = ''
            DecodedMSG = f"{DecodedMSG} {DecodedWord}"

          elif (MSG[i + 1]) + (MSG[i + 2]) == '  ':
                DecodedWord = ''

          else:
            EncodedLetter = f"{EncodedLetter + (MSG[i])}"
            
        except (ValueError,IndexError):
          pass
        
    return DecodedMSG
    
Loop = 1
while Loop == 1:
    Choice = str(input("""[1] Encode, or [2] decode?
"""))
    if Choice == '1':
        MSG = str(input("""Type the message you would like to encode. Do not use puncuation.
"""))
        EncodedMSG = (MorseCodeEncoder(MSG))
        print (EncodedMSG)
    elif Choice == '2':
        MSG = str(input("""Type what you wish to decode.
"""))
        DecodedMSG = (MorseCodeDecoder(MSG))
        print (DecodedMSG)
    else:
        print ('1, or 2')

与其笨手笨脚地附加到字符串并从编码字符串中挑选出每个字符以形成莫尔斯电码字母,不如使用 str.join() and str.split()!另外,我建议用不能成为正确编码字符串一部分的字符分隔编码的莫尔斯电码字母,例如 /。这样,您可以确定字符串中的所有 space 都是 space 并且字符串中的所有斜杠都是字母分隔符。首先,让我们定义编码和解码的字典

en_to_morse = {' ': ' ', 'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.', 'G': '--.', 'H': '....', 'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..', 'M': '--', 'N': '-.', 'O': '---', 'P': '.--.', 'Q': '--.-', 'R': '.-.', 'S': '...', 'T': '-', 'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-', 'Y': '-.--', 'Z': '--..', '1': '.----', '2': '..---', '3': '...--', '4': '....-', '5': '.....', '6': '-....', '7': '--...', '8': '---..', '9': '----.', '0': '-----'}

morse_to_en = {v: k for k, v in en_to_morse.items()} # Reverse lookup for encoder

morse_to_en 字典可以简单地通过反转 en_to_morse 字典中的键和值来创建。这两个可以组合,因为它们没有任何公共键(除了 space,这并不重要,因为它保持不变),但我将在这个例子中将它们分开。

然后,你可以这样写编码器函数:

def MorseEncode(msg):
    morse_msg = [] # make an empty list to contain all our morse symbols
    for char in msg.upper(): # Convert msg to uppercase. Then iterate over each character
        morse_char = en_to_morse[char] # Get the translation from the dictionary
        morse_msg.append(morse_char)   # Append the translation to the list
    return '/'.join(morse_msg)   # Join symbols with a '/'

解码器功能只是编码器功能的逆向。

def MorseDecode(msg):
    morse_chars = msg.split("/") # Split at '/'
    en_msg = ""                  # Empty message string 
    for char in morse_chars:     # Iterate over each symbol in the split list
        en_char = morse_to_en[char]  # Translate to English
        en_msg += en_char            # Append character to decoded message
    return en_msg  

给运行这个:

encoded = MorseEncode("Hello World") # gives '...././.-../.-../---/ /.--/---/.-./.-../-..'

decoded = MorseDecode(encoded) # gives 'HELLO WORLD'

您丢失了大小写信息,因为摩尔斯电码不分隔具有 upper/lower 个大小写字符的符号。


您也可以将函数编写为一行代码:

def MorseEncode(msg):
    return '/'.join(en_to_morse[char] for char in msg.upper())

def MorseDecode(msg):
    return ''.join(morse_to_en[char] for char in msg.split('/'))