This web app works with random numbers and you can:
- generate some random numbers from N to M;
- choose the number of such numbers;
- find the product of the numbers taken by absolute value;
- find the maximum and minimum number among the numbers taken by absolute value;
- perform sorting of numbers taken by absolute value.
- Create a project directory.
- Change into the project directory.
- Create virtual environment:
pip install virtualenvvirtualenv venv --python=<YOUR_PYTHON_VERSION>For example:
virtualenv venv --python=3.7.6- Activate virtual environment:
venv/Scripts/activate- Install python packages into a virtual environment:
pip install -r requirements.txt- Run app.py and go to your web browser and type in the search field: http://localhost:8000/
- Enter your name, select the required numerical values and options and click to button 'Показать результаты'. If you want to clear the form click to button 'Очистить форму'.
- When you’re done working on a project deactivate virtual environment:
venv/Scripts/deactivate
