• @[email protected]
    link
    fedilink
    34 hours ago

    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

    • Diplomjodler
      link
      23 hours ago

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