I thought to post some not quite so trivial as it looks quiz for Python, to test if your brain has Python installed OK ;)
Try to figure out what interpreter answers (#? lines), then check with your Python interpreter of choice:
>>> a = list(range(10))
>>> a[1:1]
#?
>>> a[1:1] = a[-2::-1]
>>> a
#?
>>>