Arrays & Strings
**Arrays**
```python
arr = [1, 2, 3]
arr.append(4)
arr.remove(2)
print(arr)
```
**Strings**