2 lines solution in Clear category for The Most Frequent by SzOp
def most_frequent(data): return max(data, key=data.count)
Nov. 5, 2018