Find the most frequently occuring item in a list
test = [1, 2, 3, 4, 2, 2, 3, 1, 4, 4, 4] most_frequent - max(set(test), key = test.count) # most_frequent = 4