One-Python-benchmark-per-day
One-Python-benchmark-per-day copied to clipboard
An ongoing fun challenge where I'll try to post one Python benchmark per day.
Results
1
One-Python-benchmark-per-day issues
Sort by
recently updated
recently updated
newest added
An interesting comparison suggested by Arne Welzel that could be added: ``` # coding: utf-8 # In[1]: import timeit s = " ".join(["128" for x in range(86400)]) def do_split(): return...