Report Bug
Qus : What is the return value of trunc()?
Qustrunc() फंक्शन क्या रिटर्न करेगा ?

A. int
B. bool
C. float
D. None


Solution
A. int



Explanation
In Python, the trunc() function is a part of the math module. It returns the truncated integer value of a number. Truncation means removing the fractional part of a number towards zero. So the return type of trunc() function is int (integer)



Report Bug