程序填空题:累乘计算
程序会读入一行整数,输出这些整数累乘的结果。
Python
from functools import reduce
print(reduce(, map()))
答案:
第1空:lambda x,y: x*y
第2空:int, input().split()
Python
from functools import reduce
print(reduce(, map()))
答案:
第1空:lambda x,y: x*y
第2空:int, input().split()