运行下列代码,输出的结果是( )。
str =''
for i in ['a','b','c','d']:
str = str + i
print(str)
a b c d
abcd
a+b+c+d
['a','b','c','d']