用python写出实现一个累乘函数product,接收正整数n和函数f,返回f(1)*f(2)*...*f(n)的结果。主模块代码如下: n = int(input()) f = eval(input()) print(product(n, f))代码
时间: 2023-06-03 19:03:26 浏览: 111
对Python实现累加函数的方法详解
5星 · 资源好评率100%
如下:
def product(n, f):
res = 1
for i in range(1, n+1):
res *= f(i)
return res
请注意,此为Python3代码。
阅读全文