The for ... in ... loop is not necessarily the fastest, or at least not anymore. According to this benchmark Counter was the slowest in python2, but was optimized in python3 to be significantly faster.
for ... in ...
Counter
Ohh, didn't knew this before. Thanks for sharing..
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
The
for ... in ...loop is not necessarily the fastest, or at least not anymore. According to this benchmarkCounterwas the slowest in python2, but was optimized in python3 to be significantly faster.Ohh, didn't knew this before. Thanks for sharing..