Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created October 5, 2020 10:23
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 codecademydev/3f03909b526d0e8cc038190b4cd5b87d to your computer and use it in GitHub Desktop.
Save codecademydev/3f03909b526d0e8cc038190b4cd5b87d to your computer and use it in GitHub Desktop.
Codecademy export
# These are the emails you will be censoring. The open() function is opening the text file that the emails are contained in and the .read() method is allowing us to save their contexts to the following variables:
email_one = open("email_one.txt", "r").read()
email_two = open("email_two.txt", "r").read()
email_three = open("email_three.txt", "r").read()
email_four = open("email_four.txt", "r").read()
def censor(body, word):
body = body.replace(word, "++++++")
return body
email_one_cens = censor(str(email_one), "learning algorithms")
proprietary_terms = ["she", "personality matrix", "sense of self", "self-preservation", "learning algorithm", "her", "herself"]
email_two_cens = (censor(email_two, entry) for entry in proprietary_terms)
print(email_two_cens)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment