This substring related question appears to never mention another potential goal when slicing strings: obtaining what's left after a slice.
Is there a way to get what's left over when performing a slice operation without two separate steps where you join what's left over?
This would be brute force way, but it uses two slice operations and a join.
myString = "how now brown trow?"
myString[:4] + myString[-5:]
>>> 'how trow?'
Can this be done using the slicing notation without making two slices and joining them together?