下面Python程序段的输出结果正确的是?( )
def power(): x ='python' y = 'world' z = x + " " + y return z print(power())
z
x + " " + y
python world
python" "world