您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
第一种:
i=0 sum=0 a=0 while i<102: if i>=1 and i%4==1: sum+=i elif i%2!=0 and i!=1: a=a+i i+=1 print(sum-a)
第二种:
a=1 b=-3 sum1=0 sum2=0 while a<=101and b>=-99: sum1+=a sum2+=b a+=+4 b+=-4 print(sum1+sum2+101)
第三种:
print(sum(range(1,102,4))-sum(range(3,102,4)))
自我反省:
第一种与第二种是我写的 第三种是我朋友写的 当你学习Python取得一点点成绩的时候不要骄傲
补充知识:Python语言求1+3!+5!+7!+9!+50!的几种思路
有一道Python面试题,求和1+3!+5!+7!+9!+50!
方法一: 常规思路
L = [1, 3, 5, 7, 9, 50] def func(n): if n == 1: return 1 else: return n * func(n-1) total = 0 for i in L: total = total + func(i) print(total)
方法二: 递归求和
>>> def func(n): ... return 1 if n == 1 else n * func(n-1) >>> sum([func(i) for i in [1, 3, 5, 7, 9, 50]]) 30414093201713378043612608166064768844377641568960512000000368047L
方法三: 函数编程
>>> from functools import reduce >>> sum([reduce(lambda x,y:x*y, range(1, i+1)) for i in list(range(1, 10, 2)) + [50]]) 30414093201713378043612608166064768844377641568960512000000368047L
方法四: 借助模块
>>> from scipy.special import factorial >>> sum(factorial([1, 3, 5, 7, 9, 50], exact=True)) 30414093201713378043612608166064768844377641568960512000000368047L
以上这篇在python中实现求输出1-3+5-7+9-......101的和就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持亿速云。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。