Skip to content

Instantly share code, notes, and snippets.

@szepnapot
Last active February 1, 2019 11:16
Show Gist options
  • Save szepnapot/ce318007523d7143a0c582f9dfb820c6 to your computer and use it in GitHub Desktop.
Save szepnapot/ce318007523d7143a0c582f9dfb820c6 to your computer and use it in GitHub Desktop.
python beauty

Call a function until a sentinel value

blocks = []
while True:
  block = f.read(32)
  if block == '':
    break
  blocks.append(block)
blocks = []
for block in iter(partial(f.read, 32), ''):
  blocks.append(block)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment