Answers for "morse code to alphabet dictionary python"

2

how to make a morse code translator in python

import time

eng_to_morse = {
    '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' : '--..', '.' : '.-.-.-', '?' : '..--..', ',' : '--..--', ' ' : '/'
}
outstr = ''
space = ' '
senc = 0
wordprocces = 0
word = input('Enter a sentance : ')
lenword = len(word)

for i in word:
    if i not in morse_to_eng:
        print('Data not formatted properly')
        time.sleep(5)
        break
    else:
        print(eng_to_morse[i], end=' ')
Posted by: Guest on May-25-2020
1

how to make a morse code translator in python

import time
morse_to_eng = {
    '....' : 'h', '.-' : 'a', '-...' : 'b', '-.-.' : 'c', '-..' : 'd', '.' : 'e', '..-.' : 'f', '--.' : 'g', '..' : 'i', '.---' : 'j', '-.-' : 'k', '.-..' : 'l', '--' : 'm', '-.' : 'n', '---' : 'o', '.--.' : 'p', '--.-' : 'q', '.-.' : 'r', '...' : 's', '-' : 't', '..-' : 'u', '...-' : 'v', '.--' : 'w', '-..-' : 'x', '-.--' : 'y', '--..' : 'z', '.-.-.-' : '.', '..--..' : '?', '--..--' : ',', '/' : ' '
}

word = input('Enter a sentance : ')
lenword = len(word)
words = ''
for i in word:
    if i != ' ':
        words=words+i
        if i not in morse_to_eng:
            print('Data not formatted properly')
            time.sleep(5)
            break
    elif i == '/':
        print(morse_to_eng[words], end=' ')
    else:
        print(morse_to_eng[words], end='')
        words = ''
Posted by: Guest on May-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language