Python Forum
loop through python pandas data frame
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
loop through python pandas data frame
#1
Hello,

I tried to loop through pandas data frame.
However I receive an error message.

with a code like this:

one error is unexpected EOF while parsing,
another is row is not define.
Please advise or does someone have a working example of how to loop through a pandas data frame ?

inp = pd.DataFrame([{'c1':10, 'c2':100}, {'c1':11,'c2':110}, {'c1':12,'c2':120}])
df = pd.DataFrame(inp)
print (df)

for index, row in df.iterrows():
    print(row['c1'], row['c2'])
Reply


Messages In This Thread
loop through python pandas data frame - by Johnse - Sep-01-2019, 05:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Better python library to create ER Diagram by using pandas data frames as tables klllmmm 0 1,127 Oct-19-2023, 01:01 PM
Last Post: klllmmm
  Using pyodbc&pandas to load a Table data to df tester_V 3 820 Sep-09-2023, 08:55 PM
Last Post: tester_V
  how do you style data frame that has empty rows. gsaray101 0 531 Sep-08-2023, 05:20 PM
Last Post: gsaray101
  Python loop for posting data to web marciokoko 10 1,553 Aug-26-2023, 02:17 AM
Last Post: deanhystad
  googletrans library to translate text language for using data frame is not running gcozba2023 0 1,227 Mar-06-2023, 09:50 AM
Last Post: gcozba2023
  export into excel, how to implement pandas into for-loop deneme2 6 2,458 Sep-01-2022, 05:44 AM
Last Post: deneme2
  Load multiple Jason data in one Data Frame vijays3 6 1,550 Aug-12-2022, 05:17 PM
Last Post: vijays3
  conditionals based on data frame mbrown009 1 899 Aug-12-2022, 08:18 AM
Last Post: Larz60+
  Merging two Data Frame on a special case piku9290dgp 0 1,089 Mar-02-2022, 10:43 AM
Last Post: piku9290dgp
  Save data frame to .csv df.to.csv() mcva 1 1,534 Feb-03-2022, 07:05 PM
Last Post: mcva

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020