print(pow(3,0.5)*pow(3,0.5)==3)
A. True
B. False
C. 3
D. pow(3,0.5)*pow(3,0.5)==3
查看答案
哪个选项能够实现Python循环结构?
A. loop
B. while
C. if
D. do...fo
以下哪个语句的运行结果为True?
A. ('3','2')<('a','b')
B. 5+4j>2-3j
C. 'abc'>'xyz'
D. 3>2>2
以下哪个关于and的运算结果是False
A. (False and True)==False
B. (False and False)==False
C. (False and True)==True
D. (True and True)==True
对负数取平方根,即使用函数math.sqpt(-1),将产生
A. 虚数
B. 程序崩溃
C. 什么都不产生
D. ValueError