Q. What is the output of the following program :
Code:
print '{0:.2}'.format(1.0 / 3)
β
Correct Answer: (B)
0.33
print '{0:.2}'.format(1.0 / 3)
You must be Logged in to update hint/solution