Iteration over the rows of a Pandas DataFrame as dictionaries December 19, 2023 by Tarik one clean option is this one: for row_dict in df.to_dict(orient="records"): print(row_dict['column_name'])