os.getcwd()
will return current working directory, not including the files’ own directory
os.path.abspath(__file__)
return the absolute path for the file, including the file name
os.path.dirname(__file__)
will return directory name including the current folder