python中max函数使用问题

2025-04-25 08:38:28
推荐回答(1个)
回答1:

print max((1, 2), (3, 4))
a, b = max((1, 2), (3, 4))
print a
print b