使用python用while循环写出前20项的斐波那契数列的和
时间: 2023-06-02 20:08:23 浏览: 300
python实现斐波那契数列的方法示例
好的,以下是使用 Python 写出前 20 项斐波那契数列的和的代码:
```python
a, b = 0, 1
fib_sum, i = 0, 0
while i < 20:
fib_sum += b
a, b = b, a + b
i += 1
print(f'The sum of first 20 Fibonacci numbers is {fib_sum}')
```
希望可以帮到您!
阅读全文