I have defined a variable as below:
time = "0915"
now next I want to create another variable naming it as follows:
x_0915 = "some value" #### idea is to have previously defined variable value in this new variable name itself
how do I make it automatic as I will be having this kind of multiple situations?
so the task is I want to concatenate "x" with the previously defined variable value and use it as a name for the new variable.