在Python3中,对于一个列表l=["Hello","World"],以下哪些语句可以正常输出"HelloWorld"。()
A:print("".join(l))
B:print(l.join(""))
C:print(*l,sep="")
D:print(l)
出自:蓝鲸认证