Skip to content

Instantly share code, notes, and snippets.

@jonalmeida
Created March 12, 2015 01:57
Show Gist options
  • Save jonalmeida/9d921dd800ea7f03d459 to your computer and use it in GitHub Desktop.
Save jonalmeida/9d921dd800ea7f03d459 to your computer and use it in GitHub Desktop.
Email grabbing from tab separated list
with open('windsor_bus_list.txt') as fp:
junk = fp.readline()
for line in iter(fp.readline, ''):
print line.split('\t')[2]
fp.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment