Report Bug
Qus : Which of the following will run without errors?
Qusनिम्नलिखित में से कौन सी त्रुटियों के बिना चलेगा?

A. round(45.8)
B. round(6352.898,2,5)
C. round()
D. round(7463.123,2,1)


Solution
A. round(45.8)



Explanation
Execute help(round) in the shell to get details of the parameters that are passed into the round function.



Report Bug