考题
已知有函数定义defdemo(*p):returnsum(p),那么表达式demo(1,2,3)的值为______、表达式demo(1,2,3,4)的值为_________。
考题
表达式3in{1,2,3}的值为_________。
考题
已知x=[3,2,3,3,4],那么表达式[indexforindex,valueinenumerate(x)ifvalue==3]的值为____________。
考题
表达式list(str([1,2,3]))==[1,2,3]的值为______________。
考题
表达式3notin[1,2,3]的值为__________。
考题
表达式{1,2,3}=={1,3,2}的值为___________。
考题
表达式{1,2,3}|{3,4,5}的值为_____________________。
考题
表达式set([1,2,3])=={1,2,3}的值为____________。
考题
表达式{1,2,3,4}-{3,4,5,6}的值为__________________。
考题
表达式set([1,2,2,3])=={1,2,3}的值为____________。
考题
表达式[1,2]+[3]的值为__________________。
考题
运行以下Python中表达式后,X的值为是x=3==3,5A.3B.5C.(True,5)D.(False,5)
考题
Python 3中,2*5**2的值为()A.20B.30C.40D.50
考题
表达式pow(3,2)==3**2的值为True。
考题
表达式(5+4)*2**2/3的值为12,表达式’ABC’$’NMABCGH’的值为.T.,表达式53.AND.78的值为.F..
考题
表达式’Hello world.I like Python.’.rfind(’python’)的值为()。
考题
填空题表达式set([1,2,3])=={1,2,3}的值为()。
考题
填空题已知有函数定义defdemo(*p):returnsum(p),那么表达式demo(1,2,3)的值为()、表达式demo(1,2,3,4)的值为()。
考题
填空题表达式set([1,2,2,3])=={1,2,3}的值为()。
考题
填空题表达式[3]in[1,2,3,4]的值为()。
考题
填空题表达式’Hello world.I like Python.’.rfind(’python’)的值为()。
考题
单选题python中,表达式’abcab’.replace(’a’,’yy’)的值为()A
yybcyybB
abcC
yyabD
abcyy
考题
填空题表达式{1,2,3}|{2,3,4}的值为()。
考题
判断题表达式(5+4)*2**2/3的值为12,表达式’ABC’$’NMABCGH’的值为.T.,表达式53.AND.78的值为.F..A
对B
错