内置函数sorted()返回给定 iterable 的排序列表。排序可以是升序或降序。如果 iterable 是字符串,则按字母顺序排序;如果是数字,则按数字排序。对于既有字符串又有不能排序的数字的可重复项。 **sorted(iterable, key=None, reverse=False)** #where iterable may be string, tuple, list,set, dictionary frozen set) 排序的()参数: 取三个参数。根据 key 函数的返回值,我们可以对给定的 …