表达式eval(’[1,2,3]’)的值为()。
第1题:
表达式eval(’’’import(’math’).sqrt(9)’’’)的值为()。
第2题:
表达式list(’[1,2,3]’)的值是[1,2,3]。
第3题:
已知x=[1,2,3],那么表达式not(set(x*100)&set(x))的值为()。
第4题:
表达式{1,2,3}<{1,2,4}的值为()。
第5题:
表达式’%s’%[1,2,3]的值为()
第6题:
假设math标准库已导入,那么表达式eval(’math.sqrt(4)’)的值为()。
第7题:
表达式set([1,2,3])=={1,2,3}的值为()。
第8题:
对
错
第9题:
第10题:
第11题:
第12题:
第13题:
表达式eval(’3+5’)的值为()。
第14题:
表达式eval(’’’import(’math’).sqrt(3**2+4**2)’’’)的值为()。
第15题:
已知有函数定义defdemo(*p):returnsum(p),那么表达式demo(1,2,3)的值为()、表达式demo(1,2,3,4)的值为()。
第16题:
表达式{1,3,2}>{1,2,3}的值为True。
第17题:
已知函数定义def demo(x,y,op):return eval(str(x)+op+str(y)),那么表达式demo(3,5,’-’)的值为()。
第18题:
表达式set([1,2,2,3])=={1,2,3}的值为()。
第19题:
第20题:
第21题:
第22题:
第23题: