第16402题
下列Python语句中,哪一项的输出结果为"1+2+3=?"
A
print(1+2+3=?)
B
print(1+2+3,'=?')
C
print(1,2,3,sep='+',end='=?')
D
print(1,2,3,sep='+','=?')