• 2022-06-09
    下面代码的输出结果是( )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.']
  • 举一反三