I receive three strings from the user.
P=...
Q=...
R=...
They can include, x, y, z and operators +, - , *, ^, /
I want to form a list, F=[P, Q, R] For example, if user had given P = x, Q = y, R = z, the corresponding list would be F=[x,y,z].
I would receive them as strings 
P="x"
Q="y"
R="z"
Now how to create F as mentioned before and not as a list of strings?
 
    