floating point numbers format



Giovanni wrote:
>
> format_for_numbers:"~,2F"
> 1/333 -> 1/333
> 1/333,numer -> 0.00
>
>   
This answer is correct.  1/333 as a float is
0.003003003

printed with 2 places to the right of the decimal point, the answer is 0.00

try format_for_numbers:"~,2E"      notice  E  not F.