If slicing can be extended to negative numbers, `sys.argv[-1:]`, seems like we should be able to
```python
sys.argv[i:]
```
So we can capture all the args the user didn't type
August 21, 2025
If slicing can be extended to negative numbers, `sys.argv[-1:]`, seems like we should be able to
```python
sys.argv[i:]
```
So we can capture all the args the user didn't type