Hacker News new | ask | show | jobs
by akasakahakada 1184 days ago
Speaking of this, I once find that

    for x in numpy.array: 
is 9X slower than

    for x in numpy.array.tolist():
in 2021.