Saved Bookmarks
| 1. |
What does math.sqrt(X, Y) do?(a) calculate the Xth root of Y(b) calculate the Yth root of X(c) error(d) return a tuple with the square root of X and YThis question was addressed to me in final exam.This key question is from Math topic in portion Mapping Functions and Modules of Python |
|
Answer» RIGHT option is (C) error For explanation: The FUNCTION TAKES only ONE argument. |
|