溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

查看python文檔的方法

發(fā)布時(shí)間:2020-07-27 10:53:13 來(lái)源:億速云 閱讀:134 作者:清晨 欄目:編程語(yǔ)言

小編給大家分享一下查看python文檔的方法,相信大部分人都還不怎么了解,因此分享這邊文章給大家學(xué)習(xí),希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去學(xué)習(xí)方法吧!

查看文檔是一個(gè)程序員的基本功,這里簡(jiǎn)單介紹幾種查看Python文檔的方法,下面以struct模塊為例。

1.help

在交互模式下,help函數(shù)是獲取文檔的好幫手,使用非常簡(jiǎn)單。

>>> import struct
>>> help(struct)
Help on module struct:
 
NAME
    struct
 
DESCRIPTION
    Functions to convert between Python values and C structs.
    Python bytes objects are used to hold the data representing the C struct
    and also as format strings (explained below) to describe the layout of data
    in the C struct.
 
    The optional first format char indicates byte order, size and alignment:
      @: native order, size & alignment (default)
      =: native order, std. size & alignment
      <: little-endian, std. size & alignment
      >: big-endian, std. size & alignment
      !: same as >
 
    The remaining chars indicate types of args and must match exactly;
    these can be preceded by a decimal repeat count:
      x: pad byte (no data); c:char; b:signed byte; B:unsigned byte;
      ?: _Bool (requires C99; if not available, char is used instead)
      h:short; H:unsigned short; i:int; I:unsigned int;

2.__doc__

__doc__是每個(gè)對(duì)象都有的屬性,其存放了對(duì)象文檔。

3.離線文檔

安裝Python時(shí)會(huì)自帶一個(gè)chm格式的離線文檔Python documention,該文檔的信息比較全。

4.離線模塊文檔

Python針對(duì)模塊還有一個(gè)單獨(dú)的文檔,該文檔在瀏覽器中查看。

5.在線文檔。

以上是查看python文檔的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI