Python | Output Type | Question 3
What is the output of the following program :
print '{0:.2}' . format ( 1.0 / 3 ) |
chevron_right
filter_none
(A) 0.333333
(B) 0.33
(C) 0.333333:-2
(D) Error
Answer: (B)
Explanation: .2 defines the precision of the floating point number.
Quiz of this Question