Python 自学笔记《1》

引入模块

  import module_name  例如:import math

查看模块内容

  dir(module_name)  例如:dir(math)

查看模块内函数的用法

  help(module_name.function)  例如:help(math.sin)

你可能感兴趣的:(Python 自学笔记《1》)