Trying to do same parsing from csv file.
1 Xe Xe Xe Xe Xe Zi Zi Zi Zi Zi
2 A B C D WOW E F G L WOW
3
4
5 data data2
6
trying to parse "data at index 5 and column WOW. So i tried
df = pd.read_csv("wow.csv", index_col=0, header=1)
data = df.loc[5, 'WOW']
it's actually working but just giving me data of first WOW not second or third... how can I loop and take all WOW's data?