Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- w = input().lower()
- dictA = { "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 = list(map(lambda x: dictA.get(x," "),w))
- print(f"Tłumaczony tekst:\n {w}")
- print("Przełumaczony tekst:")
- print(" ".join(morse))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement