在 C# 中,使用 LINQ,如果我有枚举 enumerable
,我可以这样做:
// a: Does the enumerable contain an item that satisfies the lambda?
bool contains = enumerable.Any(lambda);
// b: How many items satisfy the lambda?
int count = enumerable.Count(lambda);
// c: Return an enumerable that contains only distinct elements according to my custom comparer
var distinct = enumerable.Distinct(comparer);
// d: Return the first element that satisfies the lambda, or throws an exception if none
var element = enumerable.First(lambda);
// e: Returns an enumerable containing all the elements except those
// that are also in 'other', equality being defined by my comparer
var except = enumerable.Except(other, comparer);
我听说 Python 的语法比 C# 更简洁(因此效率更高),那么我如何使用 Python 中的可迭代对象以相同或更少的代码量实现同样的效果呢?
注意:如果不需要( Any
, Count
, First
),我不想将可迭代对象具体化为列表。
原文由 Flavien 发布,翻译遵循 CC BY-SA 4.0 许可协议
以下 Python 行应该等同于您所拥有的(假设
func
或lambda
在您的代码中,返回一个布尔值):参考:
any()
内置函数sum()
内置函数set
类型Note that I renamed
lambda
tofunc
sincelambda
is a keyword in Python, and I renamedexcept
toexcept_
出于同样的原因。请注意,您也可以使用
map()
代替理解/生成器,但通常认为它的可读性较低。