
Python's pathlib.Path allows using / to to join paths.
That also allows /= to work, which allows for some slightly odd-looking code.
>>> from pathlib import Path
>>> directory = Path()
>>> directory /= "Documents"
>>> directory
PosixPath('Documents')
#Python #PythonOddity
English




