Run
import math x = tuple([2.4, 5.1]) result = math.prod(x) print('prod(x) :', result)
Output