Is it possible to call predefined code using exec()?
exec()
In[0] exec(f"var{1} = 55") print(var1) print(exec(f"var{1}")) Out[0] 55 Non