Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 490 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 490 Bytes

Text2Morse

A simple text to morse converter for international morse code

Usage

International morse code

  1. first import the file

import mose_code_converter

  1. then use the function
morse_code = international_morse_code_converter('hello world')
print(morse_code)

american morse code

  1. first import the file

import mose_code_converter

  1. then use the function
morse_code = american_morse_code('hello world')
print(morse_code)