create empty csv file in python

Solutions on MaxInterview for create empty csv file in python by the best coders in the world

showing results for - "create empty csv file in python"
Amelia
26 May 2016
1import pandas as pd
2df = pd.DataFrame(list())
3df.to_csv('empty_csv.csv')