Skip to content

Commit 958ebed

Browse files
authored
Update morse_code.py
1 parent de905c6 commit 958ebed

File tree

1 file changed

+20
-23
lines changed

1 file changed

+20
-23
lines changed

morse_code.py

+20-23
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,30 @@
66
def morse_code(string):
77
string = string.upper()
88
character = [
9-
',', '.', '?', ';', ':', '/',
10-
'!', '+', '-', '$', '&', '@',
11-
'(', ')', '0', '1', '2', '3',
12-
'4', '5', '6', '7', '8', '9',
13-
'A', 'B', 'C', 'D', 'E', 'F',
14-
'G', 'H', 'I', 'J', 'K', 'L',
15-
'M', 'N', 'O', 'P', 'Q', 'R',
16-
'S', 'T', 'U', 'V', 'W', 'X',
17-
'Y', 'Z'
18-
]
9+
',', '.', '?', '0', '1', '2',
10+
'3', '4', '5', '6', '7', '8',
11+
'9', 'A', 'B', 'C', 'D', 'E',
12+
'F', 'G', 'H', 'I', 'J', 'K',
13+
'L', 'M', 'N', 'O', 'P', 'Q',
14+
'R', 'S', 'T', 'U', 'V', 'W',
15+
'X', 'Y', 'Z']
1916
morse_code_character = [
20-
'--..--', '.-.-.-', '..--..', '-.-.-.',
21-
'---...', '-..-.', '-.-.--', '.-.-.',
22-
'-....-', '...-..-', '.-...', '.--.-.',
23-
'-.--.', '-.--.-', '-----', '.----',
24-
'..---', '...--', '....-', '.....',
25-
'-....', '--...', '---..', '----.',
26-
'.-', '-...', '-.-.', '-..', '.', '..-.',
27-
'--.', '....', '..', '.---', '-.-', '.-..',
28-
'--', '-.', '---', '.--.', '--.-', '.-.',
29-
'...', '-', '..-', '...-', '.--', '-..-',
30-
'-.-', '--..']
17+
'--..--', '.-.-.-', '..--..', '-----',
18+
'.----','..---', '...--', '....-',
19+
'.....', '-....', '--...', '---..',
20+
'----.', '.-', '-...', '-.-.',
21+
'-..', '.', '..-.','--.',
22+
'....', '..', '.---', '-.-',
23+
'.-..', '--', '-.', '---',
24+
'.--.', '--.-', '.-.', '...',
25+
'-', '..-', '...-', '.--',
26+
'-..-', '-.-', '--..']
3127

3228
for n in range(len(character)):
3329
string = string.replace(character[n], morse_code_character[n])
34-
print(string)
30+
31+
print("Morse Code: ", string)
3532

3633

37-
string = str(input())
34+
string = str(input('Enter String: '))
3835
morse_code(string)

0 commit comments

Comments
 (0)