Why is the size of a set bigger than that of a dict?
set
dict
s = set() d = {} for i in range(20): s.add(i) d[i] = 1 print(f\'{