Answers for "How to open an Excel file in Python?"

1

open excel through python

import os
from pathlib import Path
# opening EXCEL through Code
					#local path in dir
absolutePath = Path('../excel.xlsx').resolve()
os.system(f'start excel.exe "{absolutePath}"')
Posted by: Guest on March-16-2021

Code answers related to "How to open an Excel file in Python?"

Python Answers by Framework

Browse Popular Code Answers by Language