Answers for "how to create empty dataframe in python with column names"

3

create empty pandas dataframe

df = pd.DataFrame(columns=['a', 'b', 'c'])
Posted by: Guest on September-21-2020

Code answers related to "how to create empty dataframe in python with column names"

Python Answers by Framework

Browse Popular Code Answers by Language