Python编程:NameError: name 'reduce' is not defined
【摘要】 问题来了
使用 reduce() 测试的时候报错:reduce 未定义!
print(reduce(lambda x, y: x + y, [ 1, 2, 3]))
"""Output:
NameError: name 'reduce' is not defined
"""12345
解决
引用stackoverflow的回答: - 你使用的是pyth...
问题来了
使用 reduce() 测试的时候报错:reduce 未定义!
print(reduce(lambda x, y: x + y, [ 1, 2, 3]))
"""Output:
NameError: name 'reduce' is not defined
"""
- 1
- 2
- 3
- 4
- 5
解决
引用stackoverflow的回答:
- 你使用的是python3
- 参考的是python2的指南
from functools import reduce # py3
print(reduce(lambda x, y: x + y, [ 1, 2, 3]))
"""Output:
6
"""
- 1
- 2
- 3
- 4
- 5
- 6
- 7
reduce函数在python3的内建函数移除了,放入了functools模块
参考: NameError: global name ‘reduce’ is not defined
连接: https://stackoverflow.com/questions/10226381/nameerror-global-name-reduce-is-not-defined
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/78910056
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)