运行下列程序,输出的结果是?( )
def Snd(msg = 'XinXi'):
print('XinXi' + msg)
Snd()
XinXi
XinXiXinXi
XinXimsg
程序将提示运行错误