下面代码的输出结果是()。 a=Python a.lower()
A: python'
B: Python'
C: PYTHON'
D: 出错
A: python'
B: Python'
C: PYTHON'
D: 出错
举一反三
- Python语句print("欢迎使用Python")的输出结果是( )。 A: ("欢迎使用Python") B: "欢迎使用Python" C: 欢迎使用Python D: 运行结果出错
- 以下代码的输出结果是什么print("Python!"[:-1]) A: Python! B: python C: Python D: python!
- 下面代码的输出结果是()。 A: ----Python:ASuperlanguage---- B: Python----:----ASuperlanguage C: ----Python:----ASuperlanguage D: Thepythonlanguageisamultimodellanguage.
- 下面代码的输出结果是( )。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
- 执行以下代码输出的是a = 〃Python〃print(a.upper()) A: PYTHON B: python C: Python D: "Python"