Завдання
📝 **Завдання:** `censor(text, bad_word)` замінює всі входження `bad_word` на `"***"`.
📋 **Що зробити:**
1. `def censor(text, bad_word):`
2. `return text.replace(bad_word, "***")`
3. Виклич `censor("This is bad", "bad")`
💡 **Схожий приклад (приховати email):**
```python
def hide_email(text):
return text.replace("@", "[at]")
print(hide_email("user@example.com")) # "user[at]example.com"
```
⚠️ `.replace` замінює ВСІ входження. `"aba".replace("a", "X")` → `"XbX"`.
🎯 **Очікуваний вивід:** `This is ***`