What is the value of triples after the following assignment?
triples = [ (x,y,z) for x in range(2,4) for y in range(2,5) for z in range(5,7) if 2*x*y > 3*z ]
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Answer: [(2,4,5),(3,3,5),(3,4,5),(3,4,6)]