Luis Norambuena@programming.devM to Python@programming.devEnglish · 1 month agoPython's pathlib modulewww.pythonmorsels.comexternal-linkmessage-square4fedilinkarrow-up11arrow-down10file-text
arrow-up11arrow-down1external-linkPython's pathlib modulewww.pythonmorsels.comLuis Norambuena@programming.devM to Python@programming.devEnglish · 1 month agomessage-square4fedilinkfile-text
minus-squareleds@feddit.dklinkfedilinkarrow-up2·1 month agoIt makes the code so much more clean and readable since you’re dropping multiple levels of brackets , for example os.path.join( a, b, os.path.dirname(c)) Becomes a / b / c.parent I really like it
It makes the code so much more clean and readable since you’re dropping multiple levels of brackets , for example
os.path.join( a, b, os.path.dirname(c))
Becomes
a / b / c.parent
I really like it