表达式type(3)==int的值为__________。
第1题:
表达式type(3+4j)in(int,float,complex)的值为____________。
第2题:
表达式 type(3) == int 的值为__________。
第3题:
(int)(11.0/3+0.5)表达式的值为5.
第4题:
下列程序的执行结果为?x = 10 print type(x) x = 10.0 print type(x) x = '10.0' print type(x)
A.<type 'int'> <type 'float'> <type 'str'>#B.<type 'int'> <type 'int'> <type 'int'>#C.<type 'str'> <type 'str'> <type 'str'>#D.程序出错第5题:
若a是int型变量,则表达式a=25/3%3的值为