📝 **Question:** What will this code output?
```python
s = "Hello"
s.upper()
print(s)
```
📋 Choose the right option.
💡 **Hint:** strings in Python are **immutable** (immutable). Methods like `.upper()` return a **new** string rather than changing the original one.
📝 **Question:** What will this code output?
```python
s = "Hello"
s.upper()
print(s)
```
📋 Choose the right option.
💡 **Hint:** strings in Python are **immutable** (immutable). Methods like `.upper()` return a **new** string rather than changing the original one.
📣 Help someone learn PythonShare this lesson with a friend — the first 15 are free, no signup.Tweet