Skip to content

Instantly share code, notes, and snippets.

@acbart
Created December 15, 2015 19:52
Show Gist options
  • Save acbart/498a19897ded55cb15ae to your computer and use it in GitHub Desktop.
Save acbart/498a19897ded55cb15ae to your computer and use it in GitHub Desktop.
with open('data', 'r') as inputFile:
with open('sampled', 'w') as outputFile:
for index, line in enumerate(inputFile):
# and maybe grab 3 more lines?
outputFile.write(line)
if index > SAMPLE_SIZE:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment