you are viewing a single comment's thread
view the rest of the comments
[–] 8 points 2 years ago (1 child)

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

  • source
  • parent
  • hideshow 2 child comments