“Convertir Excel a PDF Python” Código de respuesta

Convertir Excel a PDF Python

# Import Module
from win32com import client
  
# Open Microsoft Excel
excel = client.Dispatch("Excel.Application")
  
# Read Excel File
sheets = excel.Workbooks.Open('Excel File Path')
work_sheets = sheets.Worksheets[0]
  
# Convert into PDF File
work_sheets.ExportAsFixedFormat(0, 'PDF File Path')
Fancy Finch

Convertir Excel a PDF Python

# Import Module
from win32com import client
  
# Open Microsoft Excel
excel = client.Dispatch("Excel.Application")
  
# Read Excel File
sheets = excel.Workbooks.Open('Excel File Path')
work_sheets = sheets.Worksheets[0]
  
# Convert into PDF File
work_sheets.ExportAsFixedFormat(0, 'PDF File Path')
Fancy Finch

Respuestas similares a “Convertir Excel a PDF Python”

Preguntas similares a “Convertir Excel a PDF Python”

Más respuestas relacionadas con “Convertir Excel a PDF Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código