|
6 | 6 | def morse_code(string):
|
7 | 7 | string = string.upper()
|
8 | 8 | 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'] |
19 | 16 | morse_code_character = [
|
20 |
| - '--..--', '.-.-.-', '..--..', '-.-.-.', |
21 |
| - '---...', '-..-.', '-.-.--', '.-.-.', |
22 |
| - '-....-', '...-..-', '.-...', '.--.-.', |
23 |
| - '-.--.', '-.--.-', '-----', '.----', |
24 |
| - '..---', '...--', '....-', '.....', |
25 |
| - '-....', '--...', '---..', '----.', |
26 |
| - '.-', '-...', '-.-.', '-..', '.', '..-.', |
27 |
| - '--.', '....', '..', '.---', '-.-', '.-..', |
28 |
| - '--', '-.', '---', '.--.', '--.-', '.-.', |
29 |
| - '...', '-', '..-', '...-', '.--', '-..-', |
30 |
| - '-.-', '--..'] |
| 17 | + '--..--', '.-.-.-', '..--..', '-----', |
| 18 | + '.----','..---', '...--', '....-', |
| 19 | + '.....', '-....', '--...', '---..', |
| 20 | + '----.', '.-', '-...', '-.-.', |
| 21 | + '-..', '.', '..-.','--.', |
| 22 | + '....', '..', '.---', '-.-', |
| 23 | + '.-..', '--', '-.', '---', |
| 24 | + '.--.', '--.-', '.-.', '...', |
| 25 | + '-', '..-', '...-', '.--', |
| 26 | + '-..-', '-.-', '--..'] |
31 | 27 |
|
32 | 28 | for n in range(len(character)):
|
33 | 29 | string = string.replace(character[n], morse_code_character[n])
|
34 |
| - print(string) |
| 30 | + |
| 31 | + print("Morse Code: ", string) |
35 | 32 |
|
36 | 33 |
|
37 |
| -string = str(input()) |
| 34 | +string = str(input('Enter String: ')) |
38 | 35 | morse_code(string)
|
0 commit comments