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
#2
The creation of the dataframe can be simplified but everything works fine for me
import pandas as pd

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

for index, row in df.iterrows():
    #print(index)
    #print(row)
    print(row['c1'], row['c2'])
    print()
Output:
10 100 11 110 12 120
Reply


Messages In This Thread
loop through python pandas data frame - by Johnse - Sep-01-2019, 05:38 PM
RE: loop through python pandas data frame - by ThomasL - Sep-01-2019, 05:52 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,169 Oct-19-2023, 01:01 PM
Last Post: klllmmm
  Using pyodbc&pandas to load a Table data to df tester_V 3 839 Sep-09-2023, 08:55 PM
Last Post: tester_V
  how do you style data frame that has empty rows. gsaray101 0 539 Sep-08-2023, 05:20 PM
Last Post: gsaray101
  Python loop for posting data to web marciokoko 10 1,569 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,245 Mar-06-2023, 09:50 AM
Last Post: gcozba2023
  export into excel, how to implement pandas into for-loop deneme2 6 2,524 Sep-01-2022, 05:44 AM
Last Post: deneme2
  Load multiple Jason data in one Data Frame vijays3 6 1,579 Aug-12-2022, 05:17 PM
Last Post: vijays3
  conditionals based on data frame mbrown009 1 915 Aug-12-2022, 08:18 AM
Last Post: Larz60+
  Merging two Data Frame on a special case piku9290dgp 0 1,097 Mar-02-2022, 10:43 AM
Last Post: piku9290dgp
  Save data frame to .csv df.to.csv() mcva 1 1,562 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