You can simply use the following syntax
import pandas as pd
df = pd.DataFrame(columns=['A', 'B', 'C'])
df[['D', 'E', 'F']] = None
print(df)
This creates an empty dataframe with columns from 'A' to 'F' with below result
>>Empty DataFrame
>>Columns: [A, B, C, D, E, F]
>>Index: []