Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created February 11, 2019 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitherejoe/3d2b2ef03a5eb54bc396f52cb3140971 to your computer and use it in GitHub Desktop.
Save hitherejoe/3d2b2ef03a5eb54bc396f52cb3140971 to your computer and use it in GitHub Desktop.
def convertTextToBraille(text):
result_strings = []
for c in text:
result_strings.append(Braille.from_str(c).value[1])
return result_strings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment