Skip to content

Instantly share code, notes, and snippets.

@ruzfi
Created March 29, 2018 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruzfi/e5dc869fd02b1e984d21d8d4c88c52bf to your computer and use it in GitHub Desktop.
Save ruzfi/e5dc869fd02b1e984d21d8d4c88c52bf to your computer and use it in GitHub Desktop.
#!/usr/bin/python
a = open("list.txt", "r")
b = a.readlines()
for c in b:
d = set('@.')
if any((e in d) for e in c):
print(c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment