gpt4 book ai didi

python - python 3.5 中的 zip 函数具有超过 255 个参数

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

我在代码中有一个 zip 函数,给出了错误“SyntaxError: more than 255 arguments”

sentences_join = [' '.join(x) for x in zip(sentences[0::256], sentences[1::256], sentences[2::256], sentences[3::256], ..., sentences[255::256])]

如何将此函数压缩为少于 255 个参数?

最佳答案

尝试

sentences_join = [' '.join(x) for x in zip(*(sentences[n::256] for n in range(256)))]

关于python - python 3.5 中的 zip 函数具有超过 255 个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49836476/

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