标签: python sorting lambda
我有一个元组坐标:
[(1, 2), (3, 2), (1, 4)]
我还有一个协调:(8, 7)
(8, 7)
现在我需要根据元组中每个点与单点之间的距离对上面的元组进行排序。
如何使用sorted()?
sorted()