字符串s=“python is an excellent language”,运行s.split()后结果是哪个?
A: python is an excellent language
B: ‘python’ ‘is’ ‘an’ ‘excellent’ ‘language’
C: [‘python’,‘is’,‘an’, ‘excellent’, ‘language’]
D: [‘python’;‘is’;‘an’; ‘excellent’; ‘language’]
A: python is an excellent language
B: ‘python’ ‘is’ ‘an’ ‘excellent’ ‘language’
C: [‘python’,‘is’,‘an’, ‘excellent’, ‘language’]
D: [‘python’;‘is’;‘an’; ‘excellent’; ‘language’]
举一反三
- 下面代码的输出结果是( )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.']
- 下面代码的输出结果是s = "The python language is a multimodel language."print(s.split(' ')) A: ['The', 'python', 'language', 'is', 'a', 'multimodel', 'language.'] B: Thepythonlanguageisamultimodellanguage. C: 系统报错 D: The python language is a multimodel language.
- 下面代码的输出结果是s = "The python language is a multimodel language."print(s.split(' ')) A: 系统报错 B: ['The', 'python', 'language', 'is', 'a', 'multimodel', 'language.'] C: Thepythonlanguageisamultimodellanguage. D: The python language is a multimodel language.
- 下面代码的输出结果是( )。s = "The python language is a multimodel language.";print(s.split(' ')) A: ["The","python","language","is","a","multimodel","language."] B: The python language is a multimodel language. C: Thepythonlanguageisamultimodellanguage. D: 系统报错
- 执行以下代码输出的结果是(<br/>) a=”Python<br/>is a beautiful language”<br/>print(a.split()) A: Python<br/>is a beautiful language B: Python<br/>, is ,a, beautiful, language C: [‘Python’,‘is’,<br/>‘a’,‘beautiful’, ‘language’] D: AttributeError:’int’<br/>object has no attribute ‘split’