python help 怎么用help(参数)参数可以是函数名、模块名、变量名等等。比如:我不知道math模块中的sin函数是怎么定义的或者返回什么,那么我可以使用help如下:import mathprint help(math.sin)>&g2023-02-14Python510