pythonスクリプトからExcelファイルを開く

os.system('start excel.exe %s' % (path, ))
subprocess.call(['start', 'excel.exe', path], shell=True)
    http://stackoverflow.com/questions/13720940/opening-running-excel-file-from-python
http://ja.pymotw.com/2/subprocess/