8
ImportError: ningún módulo llamado win32com.client
Actualmente estoy usando Python 2.7 e intento abrir una hoja de Excel. Cuando se usa el siguiente código: 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') Me sale este error: ImportError: ningún módulo llamado win32com.client …