单选题python中,’hellO’.lower()的返回值是AhelloBHELLOCHelloDhellO

单选题
python中,’hellO’.lower()的返回值是
A

hello

B

HELLO

C

Hello

D

hellO


参考解析

解析: 暂无解析

相关考题:

Python2.x和Python3.x中input()函数的返回值都是字符串。此题为判断题(对,错)。

下列不合法的Python变量名是() A.Python2B.N.xC.sumD.Hello_World

python中,函数的返回值的关键字是()A、replaceB、indexC、findD、return

python中,’HELLO’*5的值是()A、"HELLOHELLOHELLOHELLOHELLO"B、""C、"HELLO"D、None

"python"[-1]返回值为"n"。

python中,p=‘hello world!’,则p[2:5]的值是()A、llB、lloC、heD、hello

在python中,下列是字典的是()A、"hello"B、"{}"C、{}D、[]

在Python中定义函数时不需要声明函数的返回值类型。

在Python程序中,以下那个选项表示字符串型常量()。A、helloB、“hello123”C、“123”D、“hello”

python中,“hello”[:-1:]的值是()A、"olleh"B、"hello"C、"hell"D、"o"

python中,"zhongGuo".lower()的值是()A、"zhongguo"B、"ZHONGGUO"C、"Zhongguo"D、程序异常

表达式’Hello world.I like Python.’.rfind(’python’)的值为()。

("%s"%"hello")的返回值是()A、helloB、%sC、%s%D、hello%

不管输入什么,Python 3.x中input( )函数的返回值总是字符串。

python中,type(‘hello’)的返回值是()A、strB、helloC、helD、llo

python中,’hello.count(’l’)的返回值是()A、1B、2C、3D、4

’python’-"python"()的值是()A、报错B、"Hello world"C、"hello World"D、"hello world"

python中,’hellO’.lower()的返回值是A、helloB、HELLOC、HelloD、hellO

单选题python中,’hello.count(’l’)的返回值是()A1B2C3D4

单选题python中,p=‘hello world!’,则p[2:5]的值是()AllBlloCheDhello

多选题在Python程序中,以下那个选项表示字符串型常量()。AhelloB“hello123”C“123”D“hello”

单选题Sql server提供了一些字符串函数,以下说法错误的是()。Aselec tright(’hello’,3)返回值为:helBselec tltrim(rtrim(’hello’))返回值为:hello(前后都无空格)Cselec treplace(’hello’,’e’,’o’)返回值为:holloDselec tlen(’hello’)返回值为:5

单选题SQL server提供了一些字符串函数,以下说法错误的是()。Aselectright(’hello’,3)返回值为:helBselectltrim(rtrim(’hello’))返回值为:hello(前后都无空格)Cselectreplace(’hello’,’e’,’o’)返回值为:holloDselectlen(’hello’)返回值为:5

单选题python中,“hello”[:-1:]的值是()AollehBhelloChellDo

填空题表达式’Hello world.I like Python.’.rfind(’python’)的值为()。

单选题Which SELECT statement will the result ‘ello World’ from the string ‘Hello World’?()ASELECT SUBSTR( ‘Hello World’,1) FROM dual;BSELECT INITCAP(TRIM (‘Hello World’, 1,1)) FROM dual;CSELECT LOWER(SUBSTR(‘Hello World’, 1, 1) FROM dual;DSELECT LOWER(SUBSTR(‘Hello World’, 2, 1) FROM dual;ESELECT LOWER(TRIM (‘H’ FROM ‘Hello World’)) FROM dual;

单选题python中,"zhongGuo".lower()的值是()AzhongguoBZHONGGUOCZhongguoD程序异常