On 2024-04-07 16:07, Collin Funk wrote:
I think that the difference between 'a.extend([var])' and 'a.append(var)' would better explain the differences in timing that we see with a large number of repetitions.
a.append should be faster, as it need not cons the singleton.