I'm at present utilizing python 2.7 and attempting to open an Excel sheet. When utilizing the code underneath:
import os
from win32com.client import Dispatch
xlApp = win32com.client.Dispatch("Excel.Application")
xlApp.Visible = True
# Open the file we want in Excel
workbook = xlApp.Workbooks.Open('example.xls')
I'm getting this error:
ImportError: No module named win32com.client
Is there any chance of getting the error since I am using 64-cycle Windows machine?