Answers for "how to create an empty dataframe with three columns"

3

create an empty dataframe

import pandas as pd
df = pd.DataFrame(columns=['A','B','C','D','E','F','G'])
Posted by: Guest on April-15-2020

Code answers related to "how to create an empty dataframe with three columns"

Python Answers by Framework

Browse Popular Code Answers by Language