Logo

Programming-Idioms

  • Python

Idiom #23 Convert real number to string with 2 decimal places

Given a real number x, create its string representation s with 2 decimal digits following the dot.

s =  '{:.2f}'.format(x)
s = format(x, '.2f')
s = '%.2f' % x
s = f'{x:.2f}'

f' → a formatted string
{x: → formatting x to
.2f → a fixed-point number with 2 decimal digits
#include <stdio.h>
sprintf(s, "%.2f", x);

New implementation...
< >
programming-idioms.org