create empty dataframe pandas with column names and given number of rows code example
Example: create an empty dataframe
import pandas as pd
df = pd.DataFrame(columns=['A','B','C','D','E','F','G'])
import pandas as pd
df = pd.DataFrame(columns=['A','B','C','D','E','F','G'])