Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 7, 2018 03:05
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/f8b1a589f2ca34bb196d03855dde6f88 to your computer and use it in GitHub Desktop.
Save Fhernd/f8b1a589f2ca34bb196d03855dde6f88 to your computer and use it in GitHub Desktop.
Recorrido parcial de un archivo. OrtizOL.
from functools import partial
REGISTROS_A_LEER = 5
with open('fibonaccis.txt', 'rb') as f:
registros = iter(partial(f.read, REGISTROS_A_LEER), b'')
for registro in registros:
print(registro)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment