Answers for "how to convert csv to excel in python"

8

Convert Excel to CSV using Python

import pandas as pd
data_xls = pd.read_excel('excelfile.xlsx', 'Sheet2', dtype=str, index_col=None)
data_xls.to_csv('csvfile.csv', encoding='utf-8', index=False)
Posted by: Guest on December-13-2020
1

how to convert csv to excel in python

import pandas as pd

data = pd.read_csv("k.csv")

data.to_excel("new_file.xlsx", index=None, header=True)
Posted by: Guest on February-01-2021

Code answers related to "how to convert csv to excel in python"

Python Answers by Framework

Browse Popular Code Answers by Language