Skip to content

Instantly share code, notes, and snippets.

@flying-sheep
Created July 4, 2017 09:27
Show Gist options
  • Save flying-sheep/201d98a297b3ce1e3134b1f221697fd4 to your computer and use it in GitHub Desktop.
Save flying-sheep/201d98a297b3ce1e3134b1f221697fd4 to your computer and use it in GitHub Desktop.
import random
with path.open('r', encoding='latin-1') as f:
f.readline() # header
lines = list(csv.reader(f, delimiter='\t'))
random.sample(lines, 20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment