python os scripting mac code example
Example 1: which python mac
$ brew update && brew upgrade python
Example 2: how to run mac terminal from python script
from applescript import tell
#set what command you want to run here
yourCommand = 'ls'
tell.app( 'Terminal', 'do script "' + yourCommand + '"')