Task
📝 **Task:** `headline(text)` returns the string as Title Case.
📋 **Steps:**
1. `def headline(text):`
2. `return text.title()`
3. Call `headline("python is awesome")`
💡 **Similar example:**
```python
def book_name(text):
return text.title()
print(book_name("the great gatsby")) # "The Great Gatsby"
```
⚠️ Don't confuse `.title()` (Title Case) with `.upper()` (ALL CAPS).
🎯 **Expected output:** `Python Is Awesome`