Last active
August 29, 2015 14:11
-
-
Save jhaubrich/b5c95a5ecae1e5f163fc 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
for item in sig_events: | |
if ["28","34", "60", "53", "29"].intersection(sig_dict[key][4]): |
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
freq_list_1 = ["28","34", "60"] | |
freq_list_2 = ["53", "29"] | |
for item in sig_events: | |
if set(sig_dict[key][4]).intersection(freq_list_1) or set(sig_dict[key][4]).intersection(freq_list_2) or "28" in sig_dict[key][4] : |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment