
import os

print('Run Python')
print('')

script_path = os.path.dirname(os.path.realpath(__file__))
cwd = os.getcwd()

print('script path:         {}'.format(script_path))
print('current working dir: {}'.format(cwd))

