gpt4 book ai didi

python - 我可以快速将值分配给某些参数吗? (Python)

转载 作者:行者123 更新时间:2023-12-04 01:05:59 25 4
gpt4 key购买 nike

假设我有以下列表:

abcd = [random.uniform(-10,10) for n in range(4)]

结果

abcd = [-1.3040458562760016, 1.142558074067301, 1.8875155690248278, -9.876512891278184]

我想让a = abcd[0],b=abcd[1]...有更好/更快的方法吗?谢谢!

最佳答案

a, b, c, *rest = [1, 2, 3, 4, 5, 6, 7, 8]
print(a, b, c, rest)

给予

1 2 3 [4, 5, 6, 7, 8]

所以在你的情况下:

a, b, c, d = [random.uniform(-10,10) for n in range(4)]

关于python - 我可以快速将值分配给某些参数吗? (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66445739/

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