What is the output of the following code ?
x = 45 globals()['x'] = 95 print(x)
globals() - return a dictionary representing the current global symbol table so changing the value for the key 'x' (which is global variable ) will change the value of "x"
Comment here: