gpt4 book ai didi

python - imap函数: passing a list and a another fixed string as argument (Python 3. 7/3.8)

转载 作者:太空宇宙 更新时间:2023-11-03 19:48:28 24 4
gpt4 key购买 nike

我想使用带有多个参数的 imap 函数。目前我只是使用:

...   
p.imap(function, iterated_list_for_first_argument)

但我想让它与另一个预定义的固定字符串参数一起作为第二个参数。像这样:

...   
p.imap(function, iterated_list_for_first_argument, second argument)

如果我理解正确的话,imap 函数不会接受两个参数。

最佳答案

您可以使用itertools.chainiterated_list_for_first_argument第二个参数链接起来,例如:

from itertools import imap
from itertools import chain

iterated_list_for_first_argument = [[1,2], [1,2]]
second_argument = [[4]]
print list(imap(sum, chain(iterated_list_for_first_argument, second_argument)))

输出:

[3, 3, 4]

关于python - imap函数: passing a list and a another fixed string as argument (Python 3. 7/3.8),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59989907/

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