How do you pass and get results to a python interpreter where the input is coming from a website form?
For instance if you have a web form populated with basic arithmetic expressions like addition, subtraction, multiplication and division.
If you want to pass that expression like 1+1 or 4/6 to the python interpreter and get the result back to show on the web page is that possible? I'm using Django as framework.