I want to dynamically extend an empty pandas DataFrame in the following way:
df=pd.DataFrame()
indices=['A','B','C']
colums=['C1','C2','C3']
for colum in colums:
for index in indices:
#df[index,column] = anyValue
Where both indices and colums can have arbitrary sizes which are not known in advance, i.e. I cannot create a DataFrame with the correct size in advance.
Which pandas function can I use for
#df[index,column] = anyValue
?

