MashedTech@lemmy.world to Programmer Humor@programming.dev · 2 months agoI redid the meme with what hurts melemmy.worldimagemessage-square19fedilinkarrow-up10file-textcross-posted to: programmerhumor@lemmy.ml
arrow-up10imageI redid the meme with what hurts melemmy.worldMashedTech@lemmy.world to Programmer Humor@programming.dev · 2 months agomessage-square19fedilinkfile-textcross-posted to: programmerhumor@lemmy.ml
minus-squareJATth@lemmy.worldlinkfedilinkarrow-up1·edit-22 months agoPython is just a pile of dicts/hashtables under the hood. Even the basic int type is actually a dict of method names: x = 1 print(dir(x)) ['__abs__', '__add__', '__and__', '__bool__', '__ceil__', '__class__', '__delattr__', '__dir__', ... ] PS: I will never get away from the fact that user-space memory addresses are also basically keys into the page table, so it is hashtables all the way down - you cannot escape them.
Python is just a pile of dicts/hashtables under the hood. Even the basic
int
type is actually a dict of method names:x = 1 print(dir(x)) ['__abs__', '__add__', '__and__', '__bool__', '__ceil__', '__class__', '__delattr__', '__dir__', ... ]
PS: I will never get away from the fact that user-space memory addresses are also basically keys into the page table, so it is hashtables all the way down - you cannot escape them.