gpt4 book ai didi

Python:使用列表理解生成几何级数

转载 作者:太空宇宙 更新时间:2023-11-03 13:36:57 25 4
gpt4 key购买 nike

在 Python 中,我可以单独使用列表推导生成几何级数吗?我不知道如何引用添加到列表中的元素。

那会像 Writing python code to calculate a Geometric progressionGenerate list - geometric progression .

最佳答案

列表理解不允许您引用以前的值。您可以使用 more appropriate tool 来解决这个问题:

from itertools import accumulate
from operator import mul
length = 10
ratio = 2
progression = list(accumulate([ratio]*length, mul))

或者避免使用以前的值:

progression = [start * ratio**i for i in range(n)]

关于Python:使用列表理解生成几何级数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38235829/

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