CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

Follow publication

Member-only story

Don’t use loc/iloc with Loops In Python, Instead, Use This!

Anmol Tomar
CodeX
Published in
3 min readJan 24, 2024

Pic Credit: Unsplash

What is loc — if you don’t know already!

DataFrame df (Image by Author)
##df.loc[index, column_name]

df.loc[1,'a']

### Output: 10
##df.loc[index, column_number]

df.iloc[1,0]

### Output: 10

What happens if you use loc/iloc with loops in Python?

import timestart = time.time()

# Iterating through the DataFrame df
for index, row in df.iterrows():
df.loc[index,'c'] = row.a + row.b

end = time.time()
print(end - start)

### Time taken: 2414 seconds

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

CodeX
CodeX

Published in CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

Anmol Tomar
Anmol Tomar

Written by Anmol Tomar

Top AI writer | Data Science Manager | Mentor. Want to kick off your career in Data Science? Get in touch with me: https://www.analyticsshiksha.com/

Responses (10)

Write a response