我正在学习Python,我正在努力寻找合适的功能文档。
import numpy as np
import pandas as pd
randn = np.random.randn
s = Series(randn(5), index=['a', 'b', 'c', 'd', 'e'])
例如,我想了解random.randn
中numpy
函数的更多信息。
我尝试使用help(Series)
中的pandas
函数,但没有确定具体函数及其使用方式。
在Python IDE中访问此文档的最有效方法是什么?因为help()函数做得不好。