So, I was wondering if creating a function with variables that are changing names (but only partially) is possible. Here is an example:
def function(string):
{string} + something = 1
return {string} + something
So when I call it like:
function(test)
it returns variable called "testsomething" that equals 1.
Hope my question is understandable, is this even possible?