溫馨提示×

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

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

python顯示數(shù)組的方法

發(fā)布時(shí)間:2020-08-14 11:58:29 來(lái)源:億速云 閱讀:278 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹了python顯示數(shù)組的方法,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

np.set_printoptions方法的相關(guān)屬性:

set_printoptions(precision=None, threshold=None, edgeitems=None, linewidth=None, suppress=None, nanstr=None, 
infstr=None)

對(duì)于每個(gè)屬性的釋義:

precision : int, optional,float輸出的精度,即小數(shù)點(diǎn)后維數(shù),默認(rèn)8( Number of digits of precision for floating point output (default 8))

threshold : int, optional,當(dāng)數(shù)組數(shù)目過(guò)大時(shí),設(shè)置顯示幾個(gè)數(shù)字,其余用省略號(hào)(Total number of array elements which trigger summarization rather than full repr (default 1000))

edgeitems : int, optional,邊緣數(shù)目(Number of array items in summary at beginning and end of each dimension (default 3))

linewidth : int, optional,The number of characters per line for the purpose of inserting line breaks (default 75)

suppress : bool, optional,是否壓縮由科學(xué)計(jì)數(shù)法表示的浮點(diǎn)數(shù)(Whether or not suppress printing of small floating point values using scientific notation (default False))

nanstr : str, optional,String representation of floating point not-a-number (default nan)

infstr : str, optional,String representation of floating point infinity (default inf)

實(shí)例: 

np.set_printoptions(threshold='nan') (意思是全部打?。?/p>

python顯示數(shù)組的方法

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享python顯示數(shù)組的方法內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問(wèn)題就找億速云,詳細(xì)的解決方法等著你來(lái)學(xué)習(xí)!

向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