this post was submitted on 18 Nov 2024
8 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
[โ€“] 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 2 points 1 hour ago

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