下面代码的输出结果是( )
words=“hello Python world!”
f=lambda x:len(x)
for i in words.split():
print(f(i),end=“ “)
5 5 5
5 6 6
6 6 6
11 11 11