Title says it all. I am looking for a way to find the values of a column within a row. I am unsuccessful at being about to create a for loop that searches each value in the row and inputs a value if it is x.
For example:
there are 3 rows
if row is 0:
do x
elif row is 1:
do y
else:
for columns in row:
if column is the first in row:
do x
if column is the last in row:
do y
Any ideas?