运行下列程序, 输出的结果是? ( )
s = 'kdk-kldk-dsd'
s = s. split(' -' )
print(' ' . join(s) )
[' kdk' , ' kldk' , ' dsd' ]
kdkkldkdsd
kdk kldk dsd
kdk-kldk-dsd