Skip to content

Instantly share code, notes, and snippets.

@sgobin
Created July 31, 2018 13:22
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 sgobin/bfead375e5d8324a56b3530f72870aba to your computer and use it in GitHub Desktop.
Save sgobin/bfead375e5d8324a56b3530f72870aba to your computer and use it in GitHub Desktop.
Remove empty and only spaces lines from a file / Remove linhas vazias de um arquivo
## Limpa linhas em branco dos arquivos
with open('5.txt') as infile, open('limpo-5.txt', 'w') as outfile:
for line in infile:
if not line.strip(): continue # pula linha em branco
outfile.write(line) # escreve linha no novo arquivo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment