Jupyter笔记本中的问号Pycharm
问题描述:
我在Pycharm中使用Jupyter Notebook。当我尝试使用问号'?'时要获取文档(在浏览器中使用它时可以正常工作),它会在Pycharm中返回the following error。Jupyter笔记本中的问号Pycharm
会有人知道我可以如何使这个工作在Pycharm?
答
一种替代方法是使用帮助而不是? ?在pycharm中使用jupyter笔记本时也不适用于我。但帮助确实如此。
实施例:
help(set)
打印出
Help on class set in module builtins.
class set(object)
| set() -> new empty set object
| set(iterable) -> new set object
|
| Build an unordered collection of unique elements.
|
| Methods defined here:...