Created
November 17, 2014 18:29
-
-
Save mathisonian/c20b35599dc6bf9f3c96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sets import Set | |
setMap = { | |
'aele': Set(), | |
'fscu': Set(), | |
'mcav': Set(), | |
'shys': Set() | |
} | |
for line in lines: | |
strings = line.split('\t') | |
setMap[strings[0]].add(strings[2].split('_')[0]) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment