第17499题 单选
下列Python代码的输出结果是什么?
def py(a,b=2):
  a=a%b
  return(a)
print(py(7))
A

1,2

B

1

C

3,2

D

3