summaryrefslogtreecommitdiff
path: root/progs/a125.py
blob: bd6105600ea83b60e1885718655fcbca92feafcb (plain)
1
2
3
def multiply_elements(test_tup):
  res = tuple(i * j for i, j in zip(test_tup, test_tup[1:]))
  return (res)