“tamanho do python” Respostas de código

tamanho de python variável

import sys
sys.getsizeof(object[, default])
# returns size of object in bytes
Maren-of-Alterside

tamanho do python

>>> import sys
>>> x = 2
>>> sys.getsizeof(x)
24
>>> sys.getsizeof(sys.getsizeof)
32
>>> sys.getsizeof('this')
38
>>> sys.getsizeof('this also')
48
Disgusted Deer

Respostas semelhantes a “tamanho do python”

Perguntas semelhantes a “tamanho do python”

Mais respostas relacionadas para “tamanho do python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código