import os, sys
print 'my os.getcwd =>', os.getcwd()            # show my cwd execution dir
print 'my sys.path  =>', sys.path[:6]           # show first 6 import paths
raw_input()                                     # wait for keypress if clicked
