Answers for "python openpyxl csv to excel"

0

python openpyxl csv to excel

import pandas as pd

read_file = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
read_file.to_excel (r'Path to store the Excel file\File name.xlsx', index = None, header=True)
Posted by: Guest on March-24-2021

Code answers related to "python openpyxl csv to excel"

Python Answers by Framework

Browse Popular Code Answers by Language