SyntaxFix
Write A Post
Hire A Developer
Questions
Code:
x1 = 5.63 x2 = 5.65 print(float('%.2f' % round(x1,1))) # gives you '5.6' print(float('%.2f' % round(x2,1))) # gives you '5.7'
Output:
5.6 5.7