python 如何查看模块函数
2019-03-14 本文已影响0人
BioLearner
适用问题:python 中如何查看模块中的函数。
以math模块为例
import math
print(dir(math)) #查看math模块中有哪些函数
print(help(math.log10)) #查看math模块中log10函数的简短解释
适用问题:python 中如何查看模块中的函数。
以math模块为例
import math
print(dir(math)) #查看math模块中有哪些函数
print(help(math.log10)) #查看math模块中log10函数的简短解释