Created
September 13, 2015 03:18
-
-
Save seanlinehan/5e7ba8009c6886bd763d to your computer and use it in GitHub Desktop.
This file contains 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
# Limit the list to people who have at least 43 followers in the set | |
filtered = { | |
followed: follower_sets[followed] | |
for followed in follower_sets.keys() | |
if len(follower_sets[followed]) >= 43 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment