Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
from sys import getsizeof dict = { 'name': None, 'age': 60, 'country': None, 'language': 'Python', 'year': 2022 } print(getsizeof(dict), 'bytes') ''' run: 232 bytes '''