Python Limit flottait à 2 décimales
In [1]: x = float(0.4343241231235)
In [2]: round(x, 2)
Out[2]: 0.43
gdfelt
In [1]: x = float(0.4343241231235)
In [2]: round(x, 2)
Out[2]: 0.43
answer = str(round(answer, 2))