内置函数max()有助于 返回给定可迭代表中最大的元素。也可以在两个或多个参数之间找到最大的元素。 # to find the largest item in an iterable **max(iterable, *iterables, key, default)** # to find the largest item between two or more objects **max(arg1, arg2, *args, key)** 最大()参数: 带有 iterable 的max()函数具有以下参数。 *…