String Slice

Code:

print("012345"[2:])

Output:

2345
```mac>