I don't know if this is possible (new to python), but I want to use a list of defined variables, and when I run in it shell or cmd to accept input then display the translated text.
For an example:
a = "00";
aa = " 0000";
b = "11";
bb =" 1111";
zz =" ";
Then if the client inputs: a,b,bb,aa,zz,a,b
I want it to display: 0011 1111 0000 0011 (just like that)
I would like to stick to the current way of assigning variables if there are other ways.