Guest User

Untitled

a guest
May 26th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. t = open("emails.txt").read()
  2. emails = [ i.lower().strip()
  3. for i in t.replace("\n",";").split(";")
  4. if i.strip() ]
  5.  
  6. print "\n".join(sorted(emails))
Add Comment
Please, Sign In to add comment