我对 python 2.X 和 python 3.X 之间的区别有一点疑问。为什么在 python 3 类型模块中这么小?谢谢
Python 2.7
>>> import types
>>> print(len([i for i in dir(types) if not i.startswith('__')]))
37
Python 3.2
>>> import types
>>> print(len([i for i in dir(types) if not i.startswith('__')]))
12