“Convertir Excel en PDF Python” Réponses codées

Convertir Excel en 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 en 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

Réponses similaires à “Convertir Excel en PDF Python”

Questions similaires à “Convertir Excel en PDF Python”

Plus de réponses similaires à “Convertir Excel en PDF Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code