Created
July 9, 2017 09:06
-
-
Save nngogol/2aedeeca5799c5418f581b6d1a36b025 to your computer and use it in GitHub Desktop.
English to morze in 5 min!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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