gpt4 book ai didi

python - 如何使用 for 循环遍历编号变量?

转载 作者:太空宇宙 更新时间:2023-11-04 08:53:07 25 4
gpt4 key购买 nike

我有 20 个变量,分别命名为 line1line2line3、...,直到 line20.

在 Python 中有没有一种方法可以使用 for 循环来按顺序引用这些变量中的每一个,即遍历它们?一些这样的效果:

for i in range(1, 21):
print(line + str(i))

虽然我知道那是错误的。

最佳答案

不要像那样使用单独的变量。使用列表。拥有一堆同名变量是一个 anti-pattern .

lines = []

# add 20 strings to the list

for line in lines:
print(line)

关于python - 如何使用 for 循环遍历编号变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33153564/

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