Report Bug
Qus :

What will be the output of the following Code ?

x=10, y=3
print(divmod(x,y))

Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

x=10, y=3
print(divmod(x,y))


A. (3,1)
B. (4,2)
C. (5,7)
D. (1,3)


Solution
A. (3,1)






Report Bug