import os
def GetScriptPath():
return os.path.realpath(__file__);
print(GetScriptPath());
os.getcwd()
from pathlib import Path
current_file: Path = Path(__file__).resolve()
current_path: Path = Path(__file__).parent.resolve()
import os
file_path = os.path.realpath(__file__)