• 2022-06-09
    下面代码的输出结果是( )。s = "The python is a good language."print(s.split(' '))
    A: Thepythonisagoodlanguage.
    B: ['The', 'python', 'is', 'a', 'good', 'language.']
    C: The python is a good language.
    D: The, python, is, a, good, language
  • 举一反三