list() uses slightly more memory than list comprehension
I think you’re seeing over-allocation patterns this is a sample from the source: /* This over-allocates proportional to the list size, making room * for additional growth. The over-allocation is mild, but is * enough to give linear-time amortized behavior over a long * sequence of appends() in the presence of a poorly-performing * system … Read more