SyntaxFix
Write A Post
Hire A Developer
Questions
When displaying, you can use (for example)
>> '%.2f' % 2.3465 => "2.35"
If you want to store it rounded, you can use
>> (2.3465*100).round / 100.0 => 2.35