Say I specified the number of keys to be 5 (so that the keys are 0,1,2,3, and 4 etc.) and I wanted the number of values to be random per key, where each value is 0,1,2,3, or 4, with no repeated values in each key. I am trying to make a Random Complete Graph if that means anything to you. Ex of output:
dict = { "0": ["3"],
"1": ["4"],
"2": ["3","4"],
"3": ["0","2"],
"4": ["1","2"]
}