While learning the matplotlib library, I learned about the 'shift+tab' combination. I was looking there and writing my codes. Today I opened Jupyter Notebook again, but the 'shift+tab' combination does not work. How can I access documentation on Jupyter?
在学习matplotlib库的同时,我了解到了“Shift+Tab”组合。我看着那里,写着我的代码。今天我又打开了Jupyter Notebook,但“Shift+Tab”组合不起作用。如何访问有关Jupyter的文档?
"shift+tab", right click
“Shift+Tab键”,右键单击
更多回答
优秀答案推荐
If "Shift+Tab" is not working for you, there could be a few reasons for this. Try restarting the kernel by clicking the "Kernel" menu and selecting "Restart."
如果“Shift+Tab”对你不起作用,可能有几个原因。尝试通过单击“内核”菜单并选择“重新启动”来重新启动内核。
Along with 'shift + tab' you can also access the documentation by help()
除了按下Shift+Tab键外,还可以通过Help()访问文档
https://docs.python.org/2/library/functions.html#help
Https://docs.python.org/2/library/functions.html#help
import matplotlib
help(matplotlib)
OR
或
print(matplotlib.__doc__)
OR restart your kernel and then try:
或者重新启动内核,然后尝试:
matplotlib (press'Shift + Tab')
更多回答
我是一名优秀的程序员,十分优秀!