-
-
Save timofei7/9954625a5794becfaf2110105905a396 to your computer and use it in GitHub Desktop.
Formats emails nicely for slack
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
## Turns list of dartmouth emails into formatted emails with first and last name | |
f = open("names.txt") | |
o = open("names_edit.txt", 'w') | |
for email in f.readlines(): | |
email = email.strip() | |
email = email[:-1] # Remove semicolon | |
bracket_email = "<" + email + ">" # Now its like <[email protected]> | |
at_index = email.rfind("@") | |
name = email[0:at_index-3] # get just the jason.s.feng | |
name_array = name.split(".") | |
first_name = name_array[0] | |
last_name = name_array[len(name_array)-1] | |
formatted_email = first_name + " " + last_name + " " + bracket_email + ", " | |
o.write(formatted_email) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment