Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python openpyxl csv to excel

import pandas as pd

read_file = pd.read_csv (r'Path where the CSV file is storedFile name.csv')
read_file.to_excel (r'Path to store the Excel fileFile name.xlsx', index = None, header=True)
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #python #openpyxl #csv #excel
ADD COMMENT
Topic
Name
5+4 =