Created
June 22, 2020 16:09
-
-
Save tripulse/49b1edc91cd80adbc5fd0f244078d7b2 to your computer and use it in GitHub Desktop.
Morsecode generator implementation, converts unicode strings from/to morsecode.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import zip_longest | |
from functools import partial | |
def grouper(iterable, n, fillvalue=None): | |
args = [iter(iterable)] * n | |
return zip_longest(*args, fillvalue=fillvalue) | |
def morsedec(s, bits=8, chars='.-') -> str: | |
return ''.join(chr(int(''.join(b), base=2)) for b in | |
grouper(map(lambda b: str(chars.index(b)), s), bits, '0')) | |
def morseenc(s, bits=8, chars='.-') -> str: | |
return ''.join(map(lambda c: ''.join(map(lambda b: chars[int(b, base=2)], | |
'{:b}'.format(ord(c)).rjust(bits, '0'))), s)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm aware that the code quality is horrible but it works!