How to iterate over columns in a DataFrame in Pandas
7-Day Challenge
Land Your First Data Science Job
A proven roadmap to prepare for $75K+ entry-level data roles. Perfect for Data Scientist ready to level up their career.
Build portfolios that hiring managers love
Master the Python and SQL essentials to be industry-ready
Practice with real interview questions from tech companies
Access to the $100k/y Data Scientist Cheatsheet
There are two methods to loop over columns in a Pandas Dataframe
We define a sample DataFrame
Loop over the columns using the column names
As you might know already, Pandas DataFrame does have the .columns attributes, but when called in a loop the DataFrame returns the column names by default.
or
Using the iteritems method
You also can loop over columns using the iteritems method.
for col, values in df.iteritems():
# We print the column names
print(col)
# We print the column values
print(values)
7-Day Challenge
Land Your First Data Science Job
A proven roadmap to prepare for $75K+ entry-level data roles. Perfect for Data Scientist ready to level up their career.
Build portfolios that hiring managers love
Master the Python and SQL essentials to be industry-ready
Practice with real interview questions from tech companies
Access to the $100k/y Data Scientist Cheatsheet
Related Articles
Continue your learning journey with these related topics
Getting Started
3 min readHow long does it take to learn Python for Data Science in 2023
Learn how long it takes to learn Python for Data Science in 2021.
What does it take to be a Data Scientist in 2021?
4/18/2023Read More
Webscraping
1 min readHow to do web scraping with Python
Learn how to extract data from websites using Python with web scraping. Use the requests and beautifulsoup libraries to get started and save the extracted data. Learn more about Scrapy, Selenium, lxml, Pandas and mechanicalsoup
4/10/2023Read More
DataFrame
1 min readHow to merge two time-series DataFrames with different time intervals
Learn how to merge time-series DataFrames with different frequencies in Pandas using the resample and merge/concat methods.
4/8/2023Read More
Free Newsletter
Master Data Science in Days, Not Months 🚀
Skip the theoretical rabbit holes. Get practical data science skills delivered in bite-sized lessons – Approach used by real data scientist. Not bookworms. 📚
Weekly simple and practical lessons
Access to ready to use code examples
Skip the math, focus on results
Learn while drinking your coffee