我有一个表,我想执行计数操作来总结其内容。 DCount函数应该可以工作,但我无法正确理解语法,即使它看起来与我在网上找到的示例匹配。 表:tblIGEMS 场地来自:Squadron
VBA公式:
find_uniq = lambda a: [x for x in a if a.count(x) == 1].pop()
# I have passed all of this tests
# btw I'm using python 3
test.assert_equals(find_uniq([ 1, 1, 1, 2, 1, 1 ]), 2)
test.assert_equals(find_uniq([ 0, 0, 0.55, 0, 0 ]), 0.55)
test.assert_equals(find_uniq([ 3, 10, 3, 3, 3 ]), 10)
Time: 92ms Passed: 3 Failed: 0
非常感谢任何帮助