A simple question that I'd like to incorporate into my program. I want to append the "variable" name to the "1", such that I eventually end with "variable1" as a single variable, as shown below.
variable1 = 55
j=1
print(varible+str(j))
I want the output to be 55. Is there a way to make this?
Thank you