在 Python 中,没有与 xs.contains(item) 直接等效的函数使用列表时。相反,程序员依赖于一种语法优雅的方法,该方法利用成员资格测试运算符。
要确定列表 xs 中是否存在元素项,请使用以下构造:
<code class="python">if my_item in some_list: # Item is present in the list else: # Item is not present in the list</code>
此方法还允许逆操作,检查元素是否不存在:
<code class="python">if my_item not in some_list: # Item is not present in the list else: # Item is present in the list</code>
虽然方便,但值得注意的是列表和元组中的成员资格测试具有 O(n) 时间复杂度,其中 n 是集合的长度。这意味着需要迭代列表中的元素来确定是否存在。
相比之下,集合和字典中的成员资格测试的复杂度为 O(1),这意味着它可以直接检索元素而无需迭代。当需要快速查找时,这使得集合和字典成为有效的选择。
以上是Python 中是否有内置的列表'contains”函数?的详细内容。更多信息请关注PHP中文网其他相关文章!