Python2.XとPython3.Xの違いについて少し質問があります。なぜPython3タイプのモジュールはとても小さいのですか?Thnx
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