在Python3中。下列程序运行结果说明正确的是:( )。
strs = 'abcd12efg'
print(strs.upper().title())
相关试题
单选题 Python语句print(type(2/1))的输出结果是( ) 。
单选题 在Python3中,下列程序结果为:( )。 dicts = {'a': 1, 'b': 2, 'c': 3} print(dicts.pop())
单选题 Python语句x=‘car ’;y=2;print(x+y)的输出结果是 ( ).
单选题 以下哪 - -种编程语言是脚本语言( )。
单选题 在Python3中,下列程序运行结果为:( )。 dicts = {} dicts[(1, 2)] = ({3, (4, 5)}) print(dicts)
单选题 下面不属于 python特性的是( )。
单选题 a与b定义如下,下列哪个选项是正确的?( )。 a='123' b='123'
单选题 以下选项中可用作 Python标识符的是 ( ).