已知以下程序,要想输出结果为‘1,2,3’,应该使用哪个表达式 ( )。
x = [1,2,3]
z = []
for y in x:
z.append(str(y))
print(z)
print(",".join(x))
print(x)
print(",".join(z))