Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 18, 2018 11:34
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 Fhernd/bd809e69d613ee535c221d81ce1cba2e to your computer and use it in GitHub Desktop.
Save Fhernd/bd809e69d613ee535c221d81ce1cba2e to your computer and use it in GitHub Desktop.
Omitir los primeros elementos de un objeto iterable. OrtizOL.
from itertools import dropwhile
with open('contenido.txt') as f:
for linea in dropwhile(lambda linea: linea.startswith('#'), f):
print(linea, end='')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment