Run
import math x = [5, 3] result = math.prod(x, start = 2) print('prod(x) :', result)
Output