python中,’hellO’.lower()的返回值是
第1题:
"python"[-1]返回值为"n"。
第2题:
在python中,下列是字典的是()
第3题:
在Python程序中,以下那个选项表示字符串型常量()。
第4题:
python中,"zhongGuo".lower()的值是()
第5题:
("%s"%"hello")的返回值是()
第6题:
python中,type(‘hello’)的返回值是()
第7题:
’python’-"python"()的值是()
第8题:
hello
HELLO
Hello
hellO
第9题:
hello
“hello123”
“123”
“hello”
第10题:
selectright(’hello’,3)返回值为:hel
selectltrim(rtrim(’hello’))返回值为:hello(前后都无空格)
selectreplace(’hello’,’e’,’o’)返回值为:hollo
selectlen(’hello’)返回值为:5
第11题:
第12题:
zhongguo
ZHONGGUO
Zhongguo
程序异常
第13题:
python中,p=‘hello world!’,则p[2:5]的值是()
第14题:
在Python中定义函数时不需要声明函数的返回值类型。
第15题:
python中,“hello”[:-1:]的值是()
第16题:
表达式’Hello world.I like Python.’.rfind(’python’)的值为()。
第17题:
不管输入什么,Python 3.x中input( )函数的返回值总是字符串。
第18题:
python中,’hello.count(’l’)的返回值是()
第19题:
1
2
3
4
第20题:
ll
llo
he
hello
第21题:
selec tright(’hello’,3)返回值为:hel
selec tltrim(rtrim(’hello’))返回值为:hello(前后都无空格)
selec treplace(’hello’,’e’,’o’)返回值为:hollo
selec tlen(’hello’)返回值为:5
第22题:
olleh
hello
hell
o
第23题:
SELECT SUBSTR( ‘Hello World’,1) FROM dual;
SELECT INITCAP(TRIM (‘Hello World’, 1,1)) FROM dual;
SELECT LOWER(SUBSTR(‘Hello World’, 1, 1) FROM dual;
SELECT LOWER(SUBSTR(‘Hello World’, 2, 1) FROM dual;
SELECT LOWER(TRIM (‘H’ FROM ‘Hello World’)) FROM dual;