前言:
当前姐妹们对“用python计算从1到n的和”可能比较关怀,我们都想要了解一些“用python计算从1到n的和”的相关文章。那么小编也在网摘上搜集了一些对于“用python计算从1到n的和””的相关知识,希望同学们能喜欢,你们快快来了解一下吧!Python程序计算序列之和:1 + 1/2 + 1/3 +….. + 1 / N
问题描述
输入项数,并找到级数之和:1 + 1/2 + 1/3 +….. + 1/N
解决方案
1.输入项数以找到序列的总和。
2.将sum变量初始化为0。
3.使用范围从1到数字的for循环,找到序列的总和。
4.在四舍五入到小数点后两位后打印序列的总和。
5.退出。
程序/源代码
n=int(input("Enter the number of terms: "))sum1=0for i in range(1,n+1): sum1=sum1+(1/i)print("The sum of series is",round(sum1,2))程序说明
1.用户必须输入项数才能找到总和。
2. sum变量初始化为0。
3. for循环用于查找级数之和,并且每次迭代均增加数字。
4.将数字添加到sum变量中,直到i的值达到项数为止。
5.然后打印系列的总和。
运行测试
Case 1:Enter the number of terms: 7The sum of series is 2.59 Case 2:Enter the number of terms: 15The sum of series is 3.32
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #用python计算从1到n的和