1👍
To access each cell of excel you can use the following approach:
for col in df.columns:
for row in range(df[df.columns[0]].count()):
cell = df[col][row]
Source:stackexchange.com
1👍
To access each cell of excel you can use the following approach:
for col in df.columns:
for row in range(df[df.columns[0]].count()):
cell = df[col][row]