gpt4 book ai didi

python - 创建一个循环将列表中的整数更改为另一个整数?

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

如何获取数字列表

numList = []

while len(numList) <= 1000:
numList.append(1)

while len(numList) <= 1000:
numList.append(0)

print(numList)

现在我该如何将它们更改为 0?

for循环?

最佳答案

您不会更改添加的第一组元素。请参阅我添加到您的代码中的注释:

numList = []

while len(numList) <= 1000:
numList.append(1)

# the numList is already a thousand elements long, so the while loop
# body is NEVER executed.
while len(numList) <= 1000:
numList.append(0)
<小时/>

试试这个:

numList = []

while len(numList) <= 1000:
numList.append(1)

for i in range(0, 1000):
numList[i] = 0

print(numList)

关于python - 创建一个循环将列表中的整数更改为另一个整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33049769/

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