Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. from itertools import dropwhile
  2.  
  3. with open('contenido.txt') as f:
  4.     for linea in dropwhile(lambda linea: linea.startswith('#'), f):
  5.         print(linea, end='')