basic-fast-morse-translator 1

Last updated:

0 purchases

basic-fast-morse-translator 1 Image
basic-fast-morse-translator 1 Images
Add to Cart

Description:

basicfastmorsetranslator 1

encode
string: str = "Some text"
import morseTranslator as mt
morse_string: str = mt.encode(string)
print(morse_string)

ouput
... --- -- . / - . -..- -

decode
morse_string: str = "... --- -- . / - . -..- -"
import morseTranslator as mt
string: str = mt.decode(morse_string)
print(string)

ouput
some text

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.