Python3 help() 函數(shù) -查看函數(shù)或模塊用途

2023-04-23 16:06 更新

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)


描述

?help()?函數(shù)用于查看函數(shù)或模塊用途的詳細(xì)說明。


語法

help 語法:

help([object])

參數(shù)說明:

  • object:對象

返回值

返回對象幫助信息。


實例

以下實例展示了 help 的使用方法:

print(help('sys')) # 查看 sys 模塊的幫助

print(help('str')) # 查看 str 數(shù)據(jù)類型的幫助

a = [1,2,3]
print(help(a)) # 查看列表 list 幫助信息
print(help(a.append)) # 顯示list的append方法的幫助

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號