表达式type(3)==int的值为__________。
表达式type(3)==int的值为__________。
相关考题:
下列程序的执行结果为?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.程序出错
(int)(11.0/3+0.5)表达式的值为5.