Python 3.x 使IPython3的行为类似于`类型的Python3`

Python 3.x 使IPython3的行为类似于`类型的Python3`,python-3.x,ipython,Python 3.x,Ipython,使用IPython3可以考虑以下几点: Python 3.4.3+ (default, Jul 28 2015, 13:17:50) Type "copyright", "credits" or "license" for more information. IPython 4.0.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %qui

使用IPython3可以考虑以下几点:

Python 3.4.3+ (default, Jul 28 2015, 13:17:50) 
Type "copyright", "credits" or "license" for more information.

IPython 4.0.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: type([1,2])
Out[1]: list
与Python3的代码相同:

Python 3.4.3+ (default, Jul 28 2015, 13:17:50) 
[GCC 4.9.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> type([1,2])
<class 'list'>
Python 3.4.3+(默认,2015年7月28日,13:17:50)
[GCC 4.9.3]在linux上
有关详细信息,请键入“帮助”、“版权”、“信用证”或“许可证”。
>>>类型([1,2])

我如何调整IPython,使其显示与“纯”Python3相同的输出?

需要停用漂亮的打印:

%pprint