If I have a data frame df (indexed by integer)
        BBG.KABN.S  BBG.TKA.S   BBG.CON.S   BBG.ISAT.S
index               
0       -0.004881   0.008011    0.007047    -0.000307
1       -0.004881   0.008011    0.007047    -0.000307
2       -0.005821   -0.016792   -0.016111   0.001028
3       0.000588    0.019169    -0.000307   -0.001832
4       0.007468    -0.011277   -0.003273   0.004355
and I want to iterate though each element individually (by row and column) I know I need to use .iloc(row,column) but do I need to create 2 for loops (one for row and one for column) and how I would do that?
I guess it would be something like:
for col in rollReturnRandomDf.keys():    
    for row in rollReturnRandomDf.iterrows():
       item = df.iloc(col,row)
But I am unsure of the exact syntax.
 
     
    