【发布时间】:2017-11-07 08:56:43
【问题描述】:
在pycharm中,ipython控制台似乎不是真正的ipython控制台。
在 pycharm ipython 控制台中:
In[1]: ?sorted
{'text/plain': 'Signature: sorted(iterable, key=None, reverse=False)\nDocstring:\nReturn a ne
在真正的 ipython 控制台中:
In [5]: ?sorted
Signature: sorted(iterable, key=None, reverse=False)
Docstring:
Return a new list containing all items from the iterable in ascending order.
A custom key function can be supplied to customise the sort order, and the
reverse flag can be set to request the result in descending order.
Type: builtin_function_or_method
我看到了其他一些差异:does not load ipython profile、different behavior when using shortcut to get back previous commands
在 pycharm 中有没有真正的 ipython 控制台?并且这个控制台仍然兼容在控制台中运行所选代码的快捷方式。
【问题讨论】: