cm0002@lemmy.world to Programmer Humor@programming.dev · 11 hours agoSpecifying file pathslemmy.mlimagemessage-square66fedilinkarrow-up1803arrow-down16
arrow-up1797arrow-down1imageSpecifying file pathslemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 11 hours agomessage-square66fedilink
minus-squarePennomi@lemmy.worldlinkfedilinkEnglisharrow-up21·10 hours agoPython raw strings to the rescue!
minus-squareunalivejoy@lemm.eelinkfedilinkEnglisharrow-up15·10 hours agoNobody is stopping you from using forward slashes. Python will translate the path for the current platform.
minus-squareLichtblitz@discuss.tchncs.delinkfedilinkarrow-up1·2 hours agoPython doesn’t have to. Windows supports both out of the box. Has been for many, many years
Python raw strings to the rescue!
Pathlib is the answer.
Nobody is stopping you from using forward slashes. Python will translate the path for the current platform.
Python doesn’t have to. Windows supports both out of the box. Has been for many, many years
Good to know!