[Answered ]-Reading an excel file, extracting each cell value as a str and doing some action on each cell value, Python

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]

Leave a comment