Skip to content

Instantly share code, notes, and snippets.

@nngogol
Created July 9, 2017 09:06
Show Gist options
  • Save nngogol/2aedeeca5799c5418f581b6d1a36b025 to your computer and use it in GitHub Desktop.
Save nngogol/2aedeeca5799c5418f581b6d1a36b025 to your computer and use it in GitHub Desktop.
English to morze in 5 min!
alf = {
"0": "-----",
"1": ".----",
"2": "..---",
"3": "...--",
"4": "....-",
"5": ".....",
"6": "-....",
"7": "--...",
"8": "---..",
"9": "----.",
"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": "--..",
".": ".-.-.-",
",": "--..--",
"?": "..--..",
"'": ".----.",
"!": "-.-.--",
"/": "-..-.",
"(": "-.--.-",
")": "-.--.-",
"&": ".-...",
":": "---...",
";": "-.-.-.",
"=": "-...-",
"+": ".-.-.",
"-": "-....-",
"_": "..--.-",
"\"": ".-..-.",
"$": "...-..-",
"@": ".--.-."
}
def morse(text):
return ''.join([alf[char] for char in text])
input_text = input('Enter text:')
try:
result = morse(input_text.replace(' ','_').lower() )
print('input: ', input_text)
print('output: ', result)
except Exception as e:
print('Sorry, can\'t translate char ', e)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment