I have a list of integers called MsgID
and I want to do an If where it checks if within that list there is any value greater than 3. My attempt:
if [3,2,1,0] not in MsgID:
pass
I've also tried with
if MsgID > 3:
pass
I have a list of integers called MsgID
and I want to do an If where it checks if within that list there is any value greater than 3. My attempt:
if [3,2,1,0] not in MsgID:
pass
I've also tried with
if MsgID > 3:
pass