运行下列代码,输出的结果是( )。
list =["新","年","快","乐"]
s = ''.join(list)
# 第2行的''是空字符串
print(s)
新, 年, 快, 乐
新 年 快 乐
新年快乐
结果不确定