Jak pokroić wartość indeksu nieparzystego z listy w Pythonie za pomocą funkcji wycinka

num = [1,2,3,4,5]
res = num[slice(1, len(num)-1, 2)]
print(res)
Excited Earthworm