I am able to get the current row by doing this
for index, row in enumerate(sheet.iter_rows(min_row=2, max_row=2613, values_only=False)): print(row[0].row)
Note that values_only=False for this to work
values_only=False