Report Bug
Qus :

What will be the output of the following Python expression?

print(round(4.5676,2))

Qus

निम्नलिखित Python एक्सप्रेशन का आउटपुट क्या होगा?

print(round(4.5676,2))


A. 4.5
B. 4.6
C. 4.57
D. 4.56


Solution
C. 4.57



Explanation
The function round is used to round off the given decimal number to the specified decimal places. In this case, the number should be rounded off to two decimal places. Hence the output will be 4.57.



Report Bug