我是python中的新手。我正在编写一个脚本来检查列表中的项目是否在特定范围内,它将执行一些命令。而且我不知道如何制作一个。我想使用IF语句,但我认为我错了。
我想到的是:
list = [list of values]
if ( an entry on a list is lower than x): #given that x is any number
do this
答案 0 :(得分:2)
您可以使用列表中的min()
返回最小值。因此:
if thelist and min(thelist) < x:
print "There's something small in the list"
答案 1 :(得分:0)
if any(y < x for y in list):
pass # do something