os.system( python on mac code example
Example 1: which python mac
$ brew update && brew upgrade python
Example 2: python os module
#the os module provides an operating system interface from Python
import os
#prints the name of the operating system
print(os.name)
#prints the absolute path for the module
print(os.getcwd())