Skip to content

Instantly share code, notes, and snippets.

View RMuskovets's full-sized avatar
🏠
home

Roman RMuskovets

🏠
home
View GitHub Profile
@RMuskovets
RMuskovets / morse.py
Created February 23, 2018 13:21 — forked from Saluev/morse.py
Morse code with Python unary + and - operators
# -*- coding: utf-8 -*-
morse_alphabet = {
"А" : ".-",
"Б" : "-...",
"В" : ".--",
"Г" : "--.",
"Д" : "-..",
"Е" : ".",
"Ж" : "...-",