-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmorse_code.py
35 lines (30 loc) · 1.02 KB
/
morse_code.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
# Starting Out with Python (4th Edition).
# Tony Gaddis.
# Page 456.
# Q. 4 Morse Code Converter.
def morse_code(string):
string = string.upper()
character = [
',', '.', '?', '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']
morse_code_character = [
'--..--', '.-.-.-', '..--..', '-----',
'.----','..---', '...--', '....-',
'.....', '-....', '--...', '---..',
'----.', '.-', '-...', '-.-.',
'-..', '.', '..-.','--.',
'....', '..', '.---', '-.-',
'.-..', '--', '-.', '---',
'.--.', '--.-', '.-.', '...',
'-', '..-', '...-', '.--',
'-..-', '-.-', '--..']
for n in range(len(character)):
string = string.replace(character[n], morse_code_character[n])
print("Morse Code: ", string)
string = str(input('Enter String: '))
morse_code(string)