Question
You are responsible for censoring banned words in a chat. The list of banned words is given to be : drugs, weapons, terrorists, darknet, password
You are responsible for censoring "banned words" in a chat. The list of banned words is given to be : "drugs", "weapons", "terrorists", "darknet", "password"
Write a Python function called censor that takes a chat message as input and censors the banned words by replacing them with stars (*). The number of * is the same as the length of the censored word.
For example:
censor("The password is fourty") "The ******** is fourty"
censor("They sell drugs in the darknet") "They sell ***** in the *******"
censor("Some terrorists are also selling weapons") "Some ********** are also selling *******
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started