We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
You can do so with Counter from collections in order to take care of mode with standard libs while avoiding the StatisticsError potential of being raised that comes from statistics version of mode:
Day 0: Mean, Median, and Mode
You are viewing a single comment's thread. Return to all comments →
You can do so with
Counter
from collections in order to take care of mode with standard libs while avoiding theStatisticsError
potential of being raised that comes fromstatistics
version ofmode
:EDIT: Actually, this can be done without
collections
easily too:sorted(numbers)
is used to ensure that the lowest value most-common number is selected.