gpt4 book ai didi

python - 在 Python 2.7.x 中查找系列的总和

转载 作者:太空宇宙 更新时间:2023-11-04 10:09:37 24 4
gpt4 key购买 nike

这是等式

x + x^2/2 + x^3/3 +.... x^n/n

我如何找到这个系列的总和? x是用户输入的常数项,n是幂也是基于用户的!

我做了这个程序,但它不能正常工作..看看 -

n=input("Enter power ")
x=input("Enter value of x")
i=0
while i<n:
c=n-1
res=(x**(n-c))/(n-(c))
print res
i=i+1

那我们要怎么做呢?非常感谢您的帮助!

更新:答案对我有帮助,现在程序可以正常运行了!这是我第一次使用 Stackoverflow!感谢大家这样做。

最佳答案

你的循环是这样的吗?尽量保持简单。

n = input("Enter power ")
x = float(input("Enter value of x"))

ans = 0
for i in range(1, n+1):
ans += x**i/i

print(ans)

参见 zev 关于 float 的回答

关于python - 在 Python 2.7.x 中查找系列的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39151536/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com