-
Notifications
You must be signed in to change notification settings - Fork 73
/
using-morsecode-cipher.py
70 lines (57 loc) · 2.28 KB
/
using-morsecode-cipher.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
class MorseCodeCipher:
def __init__(self):
""" This is a python implementation of Roman Numeral Cipher"""
self.morse_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': '-----', ',': '--..--', '.': '.-.-.-',
'?': '..--..', '/': '-..-.', '-': '-....-',
'(': '-.--.', ')': '-.--.-'
}
self.reverse_morse = {self.morse_dict[key]: key for key in self.morse_dict}
def encrypt(self, text: str) -> str:
result = ''
for ch in text.upper():
if ch != ' ':
val = self.morse_dict.get(ch, ch)
result += (val + ' ')
else:
result += ' '
return result
def decrypt(self, text: str) -> str:
text = text.strip(' ') + ' '
result = ''
i = 0
char = ''
space_ct = 0
while i < len(text):
if text[i] == ' ':
if space_ct == 0:
result += self.reverse_morse.get(char, char)
space_ct += 1
char = ''
else:
space_ct += 1
else:
if space_ct > 0:
result += ' ' * (space_ct - 1)
space_ct = 0
char += text[i]
i += 1
return result
if __name__ == '__main__':
cipher = MorseCodeCipher()
message = 'Hello world 😊'
encrypted = cipher.encrypt(message)
decrypted = cipher.decrypt(encrypted)
print(encrypted)
print(decrypted)