下面代码的输出结果是( )。print(s.find('language',30))
A: 11
B: 40
C: 10
D: 系统报错
A: 11
B: 40
C: 10
D: 系统报错
举一反三
- s="Thepythonlanguageisacrossplatformlanguage."[br][/br]print(s.find('language',30))[br][/br]代码的输出结果是() A: 11 B: 40 C: 系统报错 D: 10
- 下面代码的输出结果是( )。 A: = "The python language is a cross platform language. " B: int(s.find("language")) C: 11 D: 40 E: 10 F: 系统报错
- 下面代码的输出结果是 ( ) s = "The python language." print(s.find('language',15)) A: 11 B: 15 C: -1 D: False
- 下面代码的输出结果是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.