Skip to content

Instantly share code, notes, and snippets.

View abkabhishek's full-sized avatar
🏠
Working from home

Abhishek Kumar abkabhishek

🏠
Working from home
View GitHub Profile
@abkabhishek
abkabhishek / useful_snippets_for_python.py
Created July 8, 2020 12:52
#python #useful #snippet
# Python path getter
PATH = lambda p: os.path.abspath(
os.path.join(os.path.dirname(__file__), p)
)
resultPath = PATH("../log")