Contact: aviboots(AT)netvision.net.il
41,593 questions
54,235 answers
573 users
lst = [4, 7, 1, 3, 9] x = 5 if any(value > x for value in lst): print("At least one value is larger than", x) else: print("No value is larger than", x) ''' run At least one value is larger than 5 '''