I have this dictionary
total_values = {'a':1, 'b':2, 'c':3}
Now I want to convert this dictionary into multivalued one.
like
total_values = {'a':(1,False), 'b':(2, True), 'c':(3, True)}
Please tell me the most pythonic way to do that….
How the True and False values are determined doesn’t matter, suppose it as a value of a boolean variable which I can use for this..
May as well make it random: