我正在使用 Python 3.2.3 IDLE。我看到有些人使用 reduce 命令,但由于某种原因我没有。就像代码不会以紫色出现,它会将 reduce 识别为变量。
这是我的代码的一部分:
numbers = [10, 11, 11]
numbertotal = (set(numbers))
#removes duplicates in my list, therefore, the list only contains [10, 11]
print ("The sum of the list is", (sum(numbertotal))) #sum is 21
print ("The product of the list is" #need help here, basically it should be 10 * 11 = 110
我基本上想在删除重复项后将列表相乘numbertotal
。