For me it is necessary to make symbols in my code, So after building them(made by code in a list):
[W, U, V, x]
or
W, U, V, x
I need to turn them into sympy.symbols in a dynamic way not manually by coder :
x, y = symbols('x y') or symbols('x, y')
Is there any way to do it?