jupyter使用help函数查询函数功能

【写在前边】
切记:①函数不要带小括号!!
②先 import 对应的python库!!

import xx
help(xx.函数名字)

如:

import skfuzzy
help(skfuzzy.cluster.cmeans_predict)

你可能感兴趣的:(数据处理,jupyter,ide,python)