(单选题, )给出下面代码:
A = input("").split("

(单选题, )给出下面代码:
A = input("").split(",")
X = 0
While x < len(a):
print(a[x],end="")
x += 1
代码执行时,从键盘获得a,b,c,d,则代码的输出结果是( )

A.执行代码出错

B.abcd

C.无输出

D.
A,b,c,d

正确答案是B