定义以下函数:
def func(x,y,z=2):
print(x+y+z)
分别以func(1,2,3)和func(1,2)语句调用该函数,运行后的结果分别是?( )
6;出错
5;出错
5;5
6;5