在Python中,“in”运算符有一个函数

前端之家收集整理的这篇文章主要介绍了在Python中,“in”运算符有一个函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有“in”运算符的 Python函数,就像我们对operator.lt,operator.gt,..
我不想用这个函数来做类似的事情:
operator.in(5,[1,2,3,4,5,6])
>> True

operator.in(10,6])
>> False

解决方法

是的,使用 operator.contains();请注意,操作数的顺序是相反的:
>>> import operator
>>> operator.contains([1,6],5)
True
>>> operator.contains([1,10)
False

您可能错过了文档底部的方便mapping table.

原文链接:https://www.f2er.com/python/186273.html

猜你在找的Python相关文章