Answers for "how to get the output in rupees in pandas"

0

how to get the output in rupees in pandas

from babel.numbers import format_currency
print(format_currency(123456789, 'INR', locale='en_IN').replace(u'\xa0', u' '))
Posted by: Guest on November-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language