下列选项中,调用下列代码定义的函数时,程序会报错的是?( )
def ShuChu(a,b,c):
print(c,b,a)
ShuChu('1','2','3')
ShuChu('1','2','3,4')
ShuChu(1,2,3)
ShuChu(1,2,3,4)