Pathlib current file



examples/pathlib/path_lib_current_file.py
from pathlib import Path

this = Path(__file__)

print(this)