Prod=[10, 20, 10] Box=[15, 25, 15] count = 0 for i in range(0,len(Box)): if Box[i] >= Prod[i]: count += 1 if count >= 3: print("True") else: print("False")
To embed this project on your website, copy the following code and paste it into your website's HTML: