用Python编写程序计算多项式2的n次方相加
时间: 2023-05-12 18:04:26 浏览: 776
计算2的n次方
5星 · 资源好评率100%
可以使用以下代码来计算多项式2的n次方相加:
```python
def calculate_sum(n):
result = 0
for i in range(n+1):
result += 2**i
return result
n = int(input("请输入n的值:"))
print("多项式2的n次方相加的结果为:", calculate_sum(n))
```
这个程序会要求用户输入n的值,然后计算2^0 + 2^1 + 2^2 + ... + 2^n的结果,并输出到屏幕上。
阅读全文