basic-fast-morse-translator 1

Creator: coderz1093

Last updated:

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.