mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
108 lines
1.7 KiB
Python
108 lines
1.7 KiB
Python
# Python program to implement Morse Code Translator
|
|
|
|
|
|
# Dictionary representing the morse code chart
|
|
MORSE_CODE_DICT = {
|
|
"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 encrypt(message):
|
|
cipher = ""
|
|
for letter in message:
|
|
if letter != " ":
|
|
|
|
cipher += MORSE_CODE_DICT[letter] + " "
|
|
else:
|
|
|
|
cipher += " "
|
|
|
|
return cipher
|
|
|
|
|
|
def decrypt(message):
|
|
|
|
message += " "
|
|
|
|
decipher = ""
|
|
citext = ""
|
|
for letter in message:
|
|
|
|
if letter != " ":
|
|
|
|
i = 0
|
|
|
|
citext += letter
|
|
|
|
else:
|
|
|
|
i += 1
|
|
|
|
if i == 2:
|
|
|
|
decipher += " "
|
|
else:
|
|
|
|
decipher += list(MORSE_CODE_DICT.keys())[
|
|
list(MORSE_CODE_DICT.values()).index(citext)
|
|
]
|
|
citext = ""
|
|
|
|
return decipher
|
|
|
|
|
|
def main():
|
|
message = "Morse code here"
|
|
result = encrypt(message.upper())
|
|
print(result)
|
|
|
|
message = result
|
|
result = decrypt(message)
|
|
print(result)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|