I'm looking through some old notes and I found this very correct set of observations:
Python is bad dot txt
Why is data science in the grip of this one madman’s fetishes?
- The traditional collection-morphism functions (
map,reduce,filteretc) return iterators and not the same class of collection you put in. They are therefore impostors meant as appendages to the list comprehension feature and not true implementations of those functions. - GvR apparently wanted to straight up remove these functions from Python 3, along with
lambda? Which is fucking insane? ref: The fate of reduce() in Python 3000 join()is a method on the STRING YOU’RE JOINING WITH, not on the COLLECTION YOU’RE JOINING. You do’,’.join(ary), which is again, insane.- bad names:
len()instead oflength()
...I guess I didn't get around to writing down the other bad names but I'm sure there are many. I agree, Bruno from the past, Python is garbage.