执行以下代码后,输出结果为 (1,'a')。
pairs = [(2, 'b'), (1, 'a'), (3, 'c')] result = min(pairs, key=lambda p: p[0]) print(result)
正确
错误