Answers for "sort python set"

4

orderd set in python

pip install ordered-set
from ordered_set import OrderedSet
letters = OrderedSet('abracadabra')
print(letters) # {'a', 'b', 'r', 'c', 'd'}
Posted by: Guest on July-22-2020
0

sort a set in python

#Update: As of Python 3.7 (and CPython 3.6), standard dict is 
	#guaranteed to preserve order and is more performant than OrderedDict. 
#(For backward compatibility and especially readability, 
	#however, you may wish to continue using OrderedDict.)

>>> keywords = ['foo', 'bar', 'bar', 'foo', 'baz', 'foo']

>>> list(dict.fromkeys(keywords))
['foo', 'bar', 'baz']
Posted by: Guest on December-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language