Programming "with the grain"

ishanpage@programming.dev to Programming@programming.dev – 26 points –
ishan.page
4

You are viewing a single comment

OTOH, the more pythonic one will probably perform worse, but I'm not familiar enough with Python internals to make that claim without benchmarks.

I'll try it out and add the data in the article

Eh, the python one will probably perform better, because sum is probably written in native C under the hood.

I've yet to find a language where "doing it yourself" has higher performance than calling the built-in or library function. There are edge cases, but rarely enough to be bothered about.