목록에 있는 모든 아이템을 Python과 함께 곱하려면 어떻게 해야 하나요? 숫자 목록을 가져와서 곱하는 함수를 써야 해요.예:[1,2,3,4,5,6]나에게 줄 것이다1*2*3*4*5*6.난 정말 너의 도움이 필요해.Python 3: 사용functools.reduce: >>> from functools import reduce >>> reduce(lambda x, y: x*y, [1,2,3,4,5,6]) 720 Python 2: 사용reduce: >>> reduce(lambda x, y: x*y, [1,2,3,4,5,6]) 720 2 및 3 용도와 호환성이 있습니다.pip install six그 다음에, 다음과 같이 합니다. >>> from six.moves import reduce >>> reduce(..