Multiple lambda filter expressions in where node

Hi,

Is there any way that i can have list in a lambda expression like
.where(lambda: “host” in [“10.10.1.1”, “10.10.1.2”])
instead of
.where(lambda: “host” == ‘10.10.1.1’ OR “host” == “10.10.1.2”)

as i will be having more number of hosts that needs to be checked and it will be difficult to keep on writing the OR conditions

Thanks