如何查看python庫介紹,以及該庫下的函數

查看庫的介紹: 1)打開cmd,運行python; 2)import 庫名,例如:import pylab; 3)print(help(庫名.quiver)),例如:print(help(pylab.quiver)); 查看該庫下所有的函數: dir(庫名),例如:dir(pylab) # dir() 函數不帶參數時,返回當前範圍內的變量、方法和定義的類型列表;帶參數時,返回參數的屬性、方法列表。
相關文章
相關標籤/搜索