data = [1,2,3,3,1,3,3,2,3,2]
max_num = max(set(data), key=data.count)
low_num = min(set(data), key=data.count)

print(max_num)
print(low_num)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: