divmod()函数的功能是用来求模和计算余数。对应变量x和y,divmod(x,y)返回的结果是以下哪一项?
(x//y, x%y)
(x/y, x%y)
(x%y, x//y)
(x%y, x/y)