InterviewSolution
Saved Bookmarks
| 1. |
What is the return value of trunc()?(a) int(b) bool(c) float(d) None |
|
Answer» Correct choice is (a) int For explanation: Execute help(math.trunc) to get details. |
|