下面代码的输出结果是( )s="The python language is a scripting language."print(s.split(" ")) #引号之间有空格
A. The python language is a scripting language.
B. ['The', 'python', 'language', 'is', 'a', 'scripting', 'language.']
C. 'The', 'python', 'language', 'is', 'a', 'scripting', 'language.'
D. ['The' 'python' 'language' 'is' 'a' 'scripting' 'language.']
构造方法是类的一个特殊方法,Python中它的名称为()。
A. 与类同名
B. _construct
C. _init_
D. Init