Answers for "how to open excel file in python 3"

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 excel file in python 3"

Python Answers by Framework

Browse Popular Code Answers by Language