#Python学习 #软件配置 ```python print(dir(talib)) # 列出模块的结构 help(talib) # 输出模块的整个文档 help(talib.RSI) # 输出模块的某个函数的用法,很实用。 ```