Python 2.x vs Python 3(三)

Python2.x vs Python3

Python2.x vs Python3——从 raw_input() 到 input()

int/long

在 Python 2.x 视 int/long 为不同的整型类型,在 Python 3中不再进行区分,Python 2.x 还是 Python 3 都对浮点数的单精度(float)和双精度(double)进行区分,均视为双精度类型,也即在 Python 3 中实现了整型/长整型,单精度/双精度的统一。

# Python 2.x

>>> a = 10
>>> type(a)
<type 'int'>

>>> a = 10l
>>> type(a)
<type 'long'>

你可能感兴趣的:(Python 2.x vs Python 3(三))