I am looking for python equivalent to these data structure in C++
map<string,set<string>>
- sorted by key
- the value to be a set
and
map<key,val>
- sorted by key
After reading this: https://docs.python.org/2/library/collections.html#collections.OrderedDict I still didn't find anything suitable.