-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencodeMorse.py
24 lines (23 loc) · 1.17 KB
/
encodeMorse.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#FERGUS HAAK 18/04/21
#https://edabit.com/challenge/5bYXQfpyoithnQisa
char_to_dots = {
'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': '----.',
'&': '.-...', "'": '.----.', '@': '.--.-.', ')': '-.--.-', '(': '-.--.',
':': '---...', ',': '--..--', '=': '-...-', '!': '-.-.--', '.': '.-.-.-',
'-': '-....-', '+': '.-.-.', '"': '.-..-.', '?': '..--..', '/': ' / '
} #morse dictionary
#https://realpython.com/python-dicts/
def encode_morse(message):
message = message.replace("", " ")[1: -1].upper()
message = message.replace(" ", "/")
for key in message:
message = message.replace(key, char_to_dots[key])
return message
#main
print(encode_morse(input("Type what you want in morse code: ")))