“Konvertieren Sie Excel in PDF Python” Code-Antworten

Konvertieren Sie Excel in 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

Konvertieren Sie Excel in 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

Ähnliche Antworten wie “Konvertieren Sie Excel in PDF Python”

Fragen ähnlich wie “Konvertieren Sie Excel in PDF Python”

Weitere verwandte Antworten zu “Konvertieren Sie Excel in PDF Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen