I have the following code:
from babel.numbers import format_currency
print(format_currency(100000, currency="GBP", locale="en_GB"))
And the output is:
£100,000.00
Whereas I want the output to be:
£100,000
I have checked the documentation for Babel: https://babel.pocoo.org/en/latest/api/numbers.html and can see no way to do this.
Any advice on how to achieve my goal?
Thanks in advance.