I have a dictionary of objects that I would like to access in a random order. It doesn't have to be properly random but just have a good amount of variation.
The dictionary looks something like this like this:
'customer0' : '<Customer Object>'
'customer1' : 'inactive'
'customer2' : 'inactive'
'customer3' : 'inactive'
'customer4' : '<Customer Object>'
The key corresponds to a UI element that will be used to represent a customer in a game and basically I want them to not appear in the same order everytime.