was wondering if it was possible to have a value with multiple keys and vice versa in a python dictionary. I am a beginner so i am assuming this should be an easy solve, just need the correct formatting.
Was looking for something like this:
dictionary = {
'1','2','3': "blue"
'4': "blue","green"
}
dictionary['1'] == dictionary['2'] == dictionary['3']? Then no, there's no shorthand for that.