(单选题, )下面代码的输出结果是( )
A = 1.0

(单选题, )下面代码的输出结果是( )
A = 1.0
If isinstance(a,int):
print("{} is int".format(a))
Else:
print("{} is not int".format(a))

A.出错

B.1.0 is int

C.无输出

D.1.0 is not int

正确答案是D