Python give us the possibility of declaring a variable using a string as the variable name, such as:
locals()['local_variable'] = "DIOCANE"
globals()['global_variable'] = "DIO È MORTO"Each variable has its scope as local or global, depending which function used to delcare it.