Formatted numeric output: Difference between revisions

m
Line 646:
=={{header|PureBasic}}==
Using RSet() to pad 7.125 with 3 decimals converted to a string, to 8 char length.
<lang PurePasicPureBasic>RSet(StrF(7.125,3),8,"0") ; Will be 0007.125</lang>
 
=={{header|Python}}==
Anonymous user