import sys
tpl = ('python', 'java', 2022, 'c++', 3.14)
size = sys.getsizeof(tpl)
print(size, "Bytes")
# getsizeof() calls __sizeof__ and adds an additional garbage collector overhead
# if the object is managed by the garbage collector
'''
run:
80 Bytes
'''