No busques más por otros sitios ya que llegaste al sitio adecuado, poseemos la respuesta que quieres y sin liarte.
Ejemplo 1: cómo hacer un traductor de código morse en 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 notin morse_to_eng:print('Data not formatted properly')
time.sleep(5)breakelse:print(eng_to_morse[i], end=' ')
Ejemplo 2: cómo hacer un traductor de código morse en 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 notin morse_to_eng:print('Data not formatted properly')
time.sleep(5)breakelif i =='/':print(morse_to_eng[words], end=' ')else:print(morse_to_eng[words], end='')
words =''
Puedes avalar nuestra misión mostrando un comentario o valorándolo te damos la bienvenida.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)