I am building a web application using django. I need to take a string input from the user and process it using a method I have written myself. How to achieve this in Django? Here are the things I need to do
- Get User Input
userinput = (string)On start page - Put this string as an argument in my method
MyMethod(userinput)and Run it in the backend - Display what
MyMethod()returns on another page.