With Python ``` In [1]: "{:,.2f}%".format(-200) Out[1]: '-200.00%' ``` With the python-format lib ``` format('{:,.2f}%', -200) "-,200.00%" ```