最频繁的元素

返回列表中最频繁出现的元素。

  • 使用set()获取列表lst中的唯一值。
  • 使用max()找到出现次数最多的元素。
def most_frequent(lst):
  return max(set(lst), key = lst.count)

most_frequent([1, 2, 1, 2, 3, 2, 1, 4, 2]) #2