Not sure I understood your question correctly. If you want to round the number to two decimals, use this formula:
a = int(a*100) / 100
Thanks, it works perfect.
I thought there was a native function for this.
But what is the method ?.
What should I do if I just want a decimal?