2022-12-01 Python Find the Size of a Python Dictionary Find the Size of a Python Dictionary# This is one way that returns the number of bytes I think… import pickle dumped = _my_python_object_ size_estimate = len(pickle.dumps(dumped)) Sources# Stackoverflow.com: Determine the size of an object in python Medium.com: Find the size of a json object in python