I am coding on morse, where i wanted to encode my text. Since I am working on the text, I am using string-to-morse and code is as fallows:
morse_key = {'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': '--..',
'0': '-----', '1': '.----', '2': '..---',
'3': '...--', '4': '....-', '5': '.....',
'6': '-....', '7': '--...', '8': '---..',
'9': '----.', ' ': ' '
}
key_reversed = {value: key for key, value in morse_key.items()}
if to_morse:
return ' '.join(morse_key.get(i.upper()) for i in text)
else:
x = ''.join([key_reversed.get(i) for i in text.split() for i in (i, ' ')][:-1])
return str(x)
The output which I am getting is not satisfactory. I am getting out like this as shown below:
coder('-.. .- - .- ... -.-. .. . -. -.-. .', False)
So I wanted to implement split(). Can anyone suggest to me how to use it?