pip install profanity
Затем создайте программу from profanity import profanity
def contains_profanity(text):
# Проверяем, есть ли в тексте матерные слова
return profanity.contains_profanity(text)
# Использование
input_text = input("Введите строку: ")
if contains_profanity(input_text):
print(True)
else:
print(False)