I have to initialize a simple python dictionary as shown below:
dictionary = {
'a':'dftyj',
'b':'dftyj'+'__29July2021'
}
As you see dictionary['b'] is nothing but dictionary['a'] + random string. I was wondering if I could use any sort of pointer to get value from the already existing properties of the dictionary?
aas a seperate variable before defining the dictionary or define b after making the dictionary