Answers for "how to read excel file in py"

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

Python Answers by Framework

Browse Popular Code Answers by Language