I am reading How can you dynamically create variables in Python via a while loop? and I don't understand the word "dynamically".
Does it refer to the fact that the variable should be created after the pyc has been created? 
In the following code:
x = 3 
globals()['y'] = 4
Is y created dynamically?
 
     
    