mtraceur
0
Q:

print 2 decimal places python

print(format(432.456, ".2f"))

>> 432.45

print(format(321,".2f"))

>> 321.00
14
print("{0:.2f}".format(sum(query_marks)/len(query_marks)))
1
a_float = 3.14159
formatted_float = "{:.2f}".format(a_float)
-1
# this will print up to digits after decimal
print("%.2f" % (70/105))
0
print("{0:.2f}".format(sum(student_marks[query_name])/3))
0
# round a value to 2 decimal points
value_to_print = 123.456
print(f'value is {round(value_to_print, 2)}')
# prints: value is 123.46
0

New to Communities?

Join the community