shell
pip install currencies
python
from currencies import Currency
usd = Currency('USD')
python
result = usd + 10.5
result = usd - 5.75
result = usd * 2
result = usd / 4
python
formatted_value = usd.format(value, symbol=True, thousands_sep=',', precision=2)