Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 10, 2018 20:40
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/5b44e61bb22cec8d03b535ba0417b030 to your computer and use it in GitHub Desktop.
Save Fhernd/5b44e61bb22cec8d03b535ba0417b030 to your computer and use it in GitHub Desktop.
Recorrido manual de un elemento iterable. OrtizOL.
# -*- coding: utf-8 -*-
with open('archivo.txt') as f:
try:
while True:
linea = next(f)
print(linea, end='')
except StopIteration:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment