Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from itertools import dropwhile
- with open('contenido.txt') as f:
- for linea in dropwhile(lambda linea: linea.startswith('#'), f):
- print(linea, end='')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement