def ZweierschrittDiff(x, y): if x < y: for n in range(x, y, 2): print(n) elif x > y: for n in range(x, y, -2): prin