(单选题, )
下面代码的输出结果是( )
S = "The python language is a multimodel language."
Print(s.split(' '))
A.Thepythonlanguageisamultimodellanguage.
B.['The', 'python', 'language', 'is', 'a', 'multimodel', 'language.']
C.The python language is a multimodel language.
D.系统报错
正确答案是B