gpt4 book ai didi

python - 求和对 python map 的预期效果

转载 作者:太空宇宙 更新时间:2023-11-04 02:39:40 27 4
gpt4 key购买 nike

sum(map(len, ["a", "aa", "aaa"])) 给我一个 map 而不是一个数字。

我预计这会给出与 sum(len(thing) for thing in ["a", "aa", "aaa"]) 相同的结果(即 6)。

我看到 list(sum(map(len, ["a", "aa", "aaa"]))) 返回给我 [1, 2, 3],就好像 sum 没有效果一样。

我认为这种行为是有原因的。有这方面的预期用例吗?

最佳答案

我似乎在使用 ipython 并且内置的 sum 函数被“模块 numpy.core.fromnumeric 中的函数 sum”掩盖了(根据 帮助(求和))。我怀疑发出命令 %pylab 的效果。

__builtin__.sum(map(len, ["a", "aa", "aaa"])) 给出预期的 6

关于python - 求和对 python map 的预期效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46895616/

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