Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #inp = raw_input()
- inp = "sweet fucking shit!"
- bad_words = ["shit", "piss", "fuck", "cunt", "cock", "tits"]
- for i in bad_words:
- inp = inp.replace(i, "*"*len(i))
- print inp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement