执行下列Python程序,最后的输出是( )?
s = 'hello world'
words = s.split()
words = [x[::-1} for x in words}
print(" ".join(words))
olleh dlrow
hello world
world hello
dlrow olleh