Answers for "create empty dataframe pandas with column names and given number of rows"

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 "create empty dataframe pandas with column names and given number of rows"

Python Answers by Framework

Browse Popular Code Answers by Language