第11731题 单选
执行给定Python代码后print输出的结果是什么?
def tpADD(tpl):    tpl = tpl +(5,6)    return tpl
tp = (1,2,3)
tpADD(tp)
print(tp,tpADD(tp))
A

(1, 2, 3, 5, 6, 5, 6) (1, 2, 3, 5, 6, 5, 6)

B

(1, 2, 3, 5, 6) (1, 2, 3, 5, 6)

C

(1, 2, 3) (1, 2, 3, 5, 6)

D

(1, 2, 3) (1, 2, 3)