w3resource

Indexing with .loc in Pandas DataFrame

Pandas: Advanced Indexing and Slicing Exercise-7 with Solution

Indexing with loc:

Write a Pandas program that uses .loc for indexing.

Sample Solution :

Python Code :

import pandas as pd

# Create a DataFrame
df = pd.DataFrame({
    'X': [1, 6, 8, 3, 7],
    'Y': [5, 2, 9, 4, 1]
})

# Indexing using .loc
result = df.loc[1]
print(result)

Output:

X    6
Y    2
Name: 1, dtype: int64

Explanation:

  • Import pandas library.
  • Create a DataFrame.
  • Index the DataFrame using .loc.
  • Print the results.

Python-Pandas Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Reset index of MultiIndex DataFrame in Pandas.
Next: Boolean indexing in Pandas DataFrame.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/pandas/indexing-with-dot-loc-in-pandas-dataframe.php