Python 等价于 sum() 使用 xor()

时间:2023-01-02
本文介绍了Python 等价于 sum() 使用 xor()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我喜欢 Python 的 sum 函数:

I like the Python sum function :

>>> z = [1] * 11
>>> zsum = sum(z)
>>> zsum == 11
True

我想要使用 xor (^) 而不是添加 (+) 的相同功能.我想使用地图.但我无法弄清楚如何做到这一点.有什么提示吗?

I want the same functionality with using xor (^) not add (+). I want to use map. But I can not work out how to do this. Any hints?

我对此不满意:

def xor(l):
    r = 0
    for v in l: r ^= v
    return v

我想要一个使用地图的 1 班轮.提示?

I want a 1 liner using map. Hints?

推荐答案

zxor = reduce(lambda a, b: a ^ b, z, 0)

import operator
zxor = reduce(operator.xor, z, 0)

这篇关于Python 等价于 sum() 使用 xor()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:python中的求和矩阵列 下一篇:什么是类似于 sum() 的减法函数,用于减去列表中

相关文章

最新文章