Завдання
📝 **Завдання:** `headline(text)` повертає рядок у форматі заголовка (Title Case).
📋 **Що зробити:**
1. `def headline(text):`
2. `return text.title()`
3. Виклич `headline("python is awesome")`
💡 **Схожий приклад:**
```python
def book_name(text):
return text.title()
print(book_name("the great gatsby")) # "The Great Gatsby"
```
⚠️ Не плутай `.title()` (Title Case) і `.upper()` (ВСЕ КАПСОМ).
🎯 **Очікуваний вивід:** `Python Is Awesome`