下面代码的输出结果是()。
A: ----Python:ASuperlanguage----
B: Python----:----ASuperlanguage
C: ----Python:----ASuperlanguage
D: Thepythonlanguageisamultimodellanguage.
A: ----Python:ASuperlanguage----
B: Python----:----ASuperlanguage
C: ----Python:----ASuperlanguage
D: Thepythonlanguageisamultimodellanguage.
举一反三
- 下面代码的输出结果是 list1=[] foriinrange(1,11): list1.append(i**2) print(list1) A: [1,4,9,16,25,36,49,64,81,100] B: [2,4,6,8,10,12,14,16,18,20] C: 错误 D: ----Python:----ASuperlanguage
- 下面代码的输出结果是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: 系统报错
- 下面代码的输出结果是()。 a=Python a.lower() A: python' B: Python' C: PYTHON' D: 出错