Open
Description
Line 25 in 8d24dd5
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
Metadata
Metadata
Assignees
Labels
No labels
Line 25 in 8d24dd5
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