Get The Current Directory Of A Python Script

Using `os.getcwd() [TODO: Code shorthand span ] produces the current working directory of a python script in the same way `pwd [TODO: Code shorthand span ] does on the command line

import os

print(os.getcwd())
TODO: Show Results Output
~ fin ~