gpt4 book ai didi

python - 如何打印列表中每 50 个值?

转载 作者:行者123 更新时间:2023-11-30 21:52:18 25 4
gpt4 key购买 nike

所以我正在研究如何每次都能从列表中打印出 50 个值,这意味着如果列表包含长度为 120 个值,它应该打印出第一个 50 个,然后是第二个 50 个,然后是其余的在这种情况下为 20,但 120 将是​​ X 的值,这意味着它可能一直在变化:

所以到目前为止我创建的基本上只是一个简单的列表

listTest = [1233,12412,12412,34653,78556,23523,1231231,345353,4574574,234524523,24124,34534534,4576445,23523523]

for x in listTest:
print(x)


data = {
"recipients": #List of first 50 then it should loop and take the second 50,
# then loop again through this request and so on,
"originator": "testing",
}

response = requests.post("https://test.com/messages", json=data)

我刚刚在列表中做了一个简单的循环,但我不知道如何让它工作,它应该打印列表中的前 50 个值,然后打印列表中的第二个 50 个值,然后打印列表中的第三个 50 个值等等,直到列表中没有更多值。

所以它就像等:

print
> list of first [50 values]
> list of second [50 values]
> list of third [50 values]
> list of fourth [24 values]

我怎样才能做到这一点?

最佳答案

也许不是最好的方法,但你可以做到:

count=0
list=[]
for x in listTest:
count+=1
list.append(x)
if count%50==0:
print(list)
list=[]

#for last values
print(list)

关于python - 如何打印列表中每 50 个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59921703/

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