最佳答案
I was curious about the __builtin__ module and how it's used, but I can't find it in Python3! Why was it moved?
Python 2.7
>>> import __builtin__
>>>
Python 3.2
>>> import __builtin__
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named __builtin__
>>>