Trying to find min value of this tuple:
`min(
(10.0, ((-9990, 0), (-9980, 0))),
(10.0, (-9960, 0), (-9950, 0))
)`
I am using the min function in python. However, I get this error: TypeError: '<' not supported between instances of 'int' and 'tuple'
. It seems to have something to-do with the zeros as this works:
`min(
(3426.842861877387, ((8590, 4206), (8666, 7632))),
(182.7840255602223, (8675, -5692), (8712, -5513))
)`
Any ideas what I can do instead, the formatting seems to be the same in both of these examples.