Что выведет код?
from functools import reduce
print(reduce(lambda acc, x: x * acc, [1,2,3,4], 1))
from functools import reduce
print(reduce(lambda acc, x: x * acc, [1,2,3,4], 1))