this post was submitted on 18 Nov 2024
7 points (100.0% liked)

Python

6375 readers
50 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

πŸ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
πŸ’“ Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Diplomjodler3@lemmy.world 2 points 5 hours ago (1 children)

They could have chosen a better operator. But the functionality is fantastic. Makes working with paths so much easier. And you can even use slashes on windows paths.

[–] leds@feddit.dk 2 points 1 hour ago (1 children)

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

[–] Diplomjodler3@lemmy.world 1 points 1 hour ago

I always hated os.path. pathlib is just so much better.