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

Python

7300 readers
32 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 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] pnutzh4x0r@lemmy.ndlug.org 8 points 8 months ago (5 children)

Path objects also override the / operator to join paths

This is both cool and gross... gives me C++ vibes (operator overloading abuse).

[–] Diplomjodler3@lemmy.world 2 points 8 months ago (2 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 8 points 8 months 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 2 points 8 months ago

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

load more comments (2 replies)