Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 1, 2021 01:41
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/5f96c4d2d819ef3c3832201628c3460b to your computer and use it in GitHub Desktop.
Save parzibyte/5f96c4d2d819ef3c3832201628c3460b to your computer and use it in GitHub Desktop.
# Especificar al abrir para leer
with open("archivo.txt", encoding="utf-8") as archivo:
# Y al abrir para escribir
with open("salida.txt", "w", encoding="utf-8") as a:
for linea in archivo:
print(linea)
a.write(linea)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment