How can I iterate through two Pandas columns? August 11, 2023 by Tarik Use the DataFrame.itertuples() method: for a, b in test.itertuples(index=False): print a, b