Q34
What is the result of divmod(10, 3) ?
A.
(3, 1)
AnswerB.
(3, 0)
C.
(3, 3)
D.
(10, 3)
Answer: Option A
Solution
Answer: Option A
Solution:
The divmod() function returns the quotient and remainder of division.