SyntaxFix
Write A Post
Hire A Developer
Questions
In addition to max, you can also sort:
>>> lis [(101, 153), (255, 827), (361, 961)] >>> sorted(lis,key=lambda x: x[1], reverse=True)[0] (361, 961)