赞
踩
首先先定义一个列表,并在其中添加一些元素,然后来判断某一元素是否在其中。
例如In [7]: test_list = [1,5,7,4,23,66]
In [8]: a = 25
In [9]: a not in test_list
以上实例输出结果为:True
例如from bisect import bisect_left
# 初始化列表
test_list_set = [ 1, 6, 3, 5, 3, 4 ]
test_list_bisect = [ 1, 6, 3, 5, 3, 4 ]
print("查看 4 是否在列表中 ( 使用 set() + in) : ")
test_list_set = set(test_list_set)
if 4 in test_list_set :
print ("存在")
print("查看 4 是否在列表中 ( 使用 sort() + bisect_left() ) : ")
test_list_bisect.sort()
if bisect_left(test_list_bisect, 4):
print ("存在")
输出结果为查看 4 是否在列表中 ( 使用 set() + in) :
存在
查看 4 是否在列表中 ( 使用 sort() + bisect_left() ) :
存在
更多学习内容,请点击Python学习网。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。