Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 12, 2021 02:18
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 parzibyte/babd837bbd21fa9cfe0020c32521004b to your computer and use it in GitHub Desktop.
Save parzibyte/babd837bbd21fa9cfe0020c32521004b to your computer and use it in GitHub Desktop.
def binario_a_texto(texto_binario):
texto_plano = ""
for binario in texto_binario.split(separador):
texto_plano += binario_a_ascii(binario)
return texto_plan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment