python中如何进行连乘计算

在本篇文章里小编给大家分享的是关于python连乘计算的代码,有兴趣的朋友们可以参考学习下。

1、Python中连乘的代码:

 sum = 1; n = int(input("Please input number n:")) for i in range(1,n+1): sum = sum*i; if i

实例扩展:

python 连乘 递归 参数可以是多个可迭代对象

 from functools import reduce a = (1, 2, 3, ['1','1'], [1, [2, [3, [4]]]]) def args_all_to_list(*args): try: data=list(*args) return data except: data=list(args) return data def data_list(a): data = [] f = 0 for x in a: if type(x) is int: data.append(x) f += 1 elif type(x) is str: data.append(int(x)) elif type(x) is list or tuple: data += list(x) if f == len(a): return data return data_list(data) def chen(*args): return reduce(lambda x, y: x * y, data_list(args_all_to_list(*args))) print(chen(1,2)) print(chen(1,2,[1])) print(chen(a)) 

以上就是python中如何进行连乘计算的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » python