Since Python 3.10, the itertools module has a new function named pairwise. It is a small and neat tool to generate successive overlapping pairs from an iterable.
xxxxxxxxxx
import itertools
letters = ['a', 'b', 'c', 'd', 'e']
result = itertools.pairwise(letters)
print(list(result))
# [('a', 'b'), ('b', 'c'), ('c', 'd'), ('d', 'e')]