I have been thinking this through but I did not come to any conclusion (not that great with Python yet).
My dictionary looks like this:
{1: [dog, animal], 2: [square, shape], 3: [red, color]}
I am printing out the values but the dictionary is sorted by numbers, which is fine but I want to randomize it so I print out something like this:
3
red
color
1
dog
animal
2
square
shape
I know that list would be more ideal for this situation but this data is from existing structure that I cannot change. Maybe re-numbering the keys would do the trick?