https://github.com/progrmoiz/python-snippets/blob/8d24dd5874d9e931f205b4ea700c974f60112307/formats.py#L25 ```python In[16]: for test in (0, 1, -1, 1.23, 1., 1.2, 3.1341): ...: print(f'${test:.2f}') ...: $0.00 $1.00 $-1.00 $1.23 $1.00 $1.20 $3.13 ```
python-snippets/formats.py
Line 25 in 8d24dd5