表达式type(3)==int的值为__________。

题目

表达式type(3)==int的值为__________。


相似考题
更多“表达式type(3)==int的值为__________。 ”相关问题
  • 第1题:

    表达式type(3+4j)in(int,float,complex)的值为____________。


    正确答案:True

  • 第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.程序出错
    2

  • 第5题:

    若a是int型变量,则表达式a=25/3%3的值为


    A