Python type()显示不同的结果

我在学习
Python时使用Sublime Text 2,实际上我只是一个初学者.现在,当我在编辑器中编写类型(1/2)并构建它(cmd B)时,我将输出作为int.相反,如果我在Sublime的终端(ctrl`)中编写相同的指令,我得到的结果为float.有人可以解释一下为什么会这样吗?

type(1/2) #in Sublime's editor results: <type 'int'>
type(1/2) #in Sublime's python console results <type 'float'>

我认为它应该是“int”,但仍然为什么说“浮动”.

最佳答案 某处代码从__future __.division导入

>>> type(1/2)
<type 'int'>
>>> from __future__ import division
>>> type(1/2)
<type 'float'>

python2.7

>>> type(1/2)
<type 'int'>

Python 3有类型报告这个类作为一个类,所以它不是使用python3的解释器.

python3

>>> type(1/2)
<class 'float'>
点赞