python - Sorting a large number of tuples by the first element -
i have large number of tuples in format:
(count, (r, g, b))
how go sorting them first element, count
value?
you use sorted function, returns list, , itemgetter:
from operator import itemgetter lst = [(count, (r, g, b)), ...] sorted_lst = sorted(lst, key=itemgetter(0))
Comments
Post a Comment