第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Python如何查看變量占用空間大小

Python如何查看變量占用空間大小

青春有我 2018-07-05 10:10:10
在c語言中提供了sizeof可以用來查看一個(gè)變量占用的空間大小,在python中可以使用sys模塊下的getsizeof方法來判斷變量占用的空間大小。其文檔解釋如下:[mw_shl_code=python,true]sys.getsizeof(object[, default]):[/mw_shl_code]Return the size of an object in bytes. The object can be any type of object. All built-in objects will return correct results, but this does not have to hold true for third-party extensions as it is implementation specific.The default argument allows to define a value which will be returned if the object type does not provide means to retrieve the size and would cause a TypeError.getsizeof calls the object’s sizeof method and adds an additional garbage collector overhead if the object is managed by the garbage collector.使用示例:[mw_shl_code=python,true]import sysv = 1print sys.getsizeof(v)s = 'abc'print sys.getsizeof(s)[/mw_shl_code]
查看完整描述

1 回答

?
翻翻過去那場(chǎng)雪

TA貢獻(xiàn)2065條經(jīng)驗(yàn) 獲得超14個(gè)贊

sys.getsizeof(object[, default])

下面是我摘錄的,希望對(duì)你有用。

以字節(jié)(byte)為單位返回對(duì)象大小。 這個(gè)對(duì)象可以是任何類型的對(duì)象。 所以內(nèi)置對(duì)象都能返回正確的結(jié)果 但不保證對(duì)第三方擴(kuò)展有效,因?yàn)楹途唧w實(shí)現(xiàn)相關(guān)。
getsizeof() 調(diào)用對(duì)象的 __sizeof__ 方法, 如果對(duì)象由垃圾收集器管理, 則會(huì)加上額外的垃圾收集器開銷。

查看完整回答
反對(duì) 回復(fù) 2018-07-28
  • 1 回答
  • 0 關(guān)注
  • 2976 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)