score=200 wickets=7 catch=4 list_cond=[score>320, wickets<8, catch>3] if(any(list_cond)): print("at least one of the condition is true") else: print("None of the condition is true")