Simple question here:
If I try to slice my dictionary (parsed from an xml file) in python, I will get a TypeError: unhashable type: 'slice'
for section in my_dict[:3] ['CATEGORY']['SUBCATEGORY']:
it looks like it doesn't work for dictionaries, do they have a specific method? Or is it because of the 2 other arguments coming right after that are misinterpreted?