在标准的Jupyter笔记本中,我可以使用双问号??
来查找函数或库等的文档。例如,如果我在笔记本电脑上本地在Jupyter笔记本中执行此操作(导入numpy和lookup它的文件):
import numpy as np
??np
笔记本会打印出numpy文档(看起来像这样):
Type: module
String form: <module 'numpy' from '/Users/johnny/anaconda/envs/fastai36/lib/python3.6/site-packages/numpy/__init__.py'>
File: ~/anaconda/envs/fastai36/lib/python3.6/site-packages/numpy/__init__.py
Source:
"""
NumPy
=====
Provides
1. An array object of arbitrary homogeneous items
2. Fast mathematical operations over arrays
3. Linear Algebra, Fourier Transforms, Random Number Generation
etc...
我注意到当我在Kaggle笔记本中做同样的事情时,没有任何反应。
??
通过Kaggle Jupyter Notebook查找文档?非常感谢。