# b_trunc_rev.py combo = [1, 2, 3, 4] result = combo[:-1][::-1] print(result) result = combo[-2::-1] print(result)