A. Coding: Write a Python program to convert 5 letters to Morse Code. Justin: A-E; Noah: F-J; Jiayin: K-O; Zihan: P-T.B. Convert binary numbers below to octal and hexadecimal.
https://replit.com/@jyaocoding/Morse-Code-Translator#main.py
6
26
6361
6171
4001
731
5271
562
5122
5134
1
5135
1361
455
475
1624
1224
153
2415
20042
Hexadecimal:
3
2C
1DC
231
BA
6D
BA
2C6
2BA4
2D8
CODE = {' ': '_',
"'": '.----.',
'(': '-.--.-',
')': '-.--.-',
',': '--..--',
'-': '-....-',
'.': '.-.-.-',
'/': '-..-.',
'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': '--..',
'_': '..--.-'}
def main():
print("This program translates words to morse code\n")
words = input("Enter a word or phrase to be encoded: ")
words = words.upper()
codeDict = createDict()
i = 0
try:
while (i < len(words)):
if (words[i] != " "):
print(codeDict[words[i]], end = " ")
else:
print("/", end = " ")
i += 1
except:
print("\nInvalid characters found - refer to morse code alphabet")
def createDict():
code = {'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': '-----'}
return code
main()