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