This project contains a Python script that calculates and describes the change between two numerical values in various ways. The script takes two arguments: an initial value and a final value for comparison. The operations performed include percentage, percentage difference, ratio, and ratio difference.
Created by: Fer Aguirre
โโโ LICENSE
โโโ change_calculator.py
โโโ poetry.lock
โโโ pyproject.toml
โโโ README.md
To install the necessary dependencies, follow these steps:
- Clone the repository to your local machine:
git clone https://github.com/fer-aguirre/numerical-expressions
- Navigate to the project directory:
cd numerical-expressions
- Install the dependencies using Poetry or pip accordingly:
poetry install
pip install -r requirements.txt
To run the change_calculator.py
script from the command line, use the following command:
python change_calculator.py <initial_value> <final_value>
Replace <initial_value>
and <final_value>
with the values you want to compare. For example:
python change_calculator.py 10 20
This will calculate and print the percentage, percentage difference, ratio, and ratio difference between 10 and 20.
All contributions are welcome. For major changes, please open an issue first to discuss what you would like to change. Pull requests are appreciated to help fix or add features.
This project is released under MIT License.
- Math for Journalists Course by Poynter
- Newsroom Math Crib Sheet by Steve Doig
This repository was generated with cookiecutter.