ComenzarEmpieza gratis

The many flavors of .iloc

There are multiple ways to index a pandas DataFrame – maybe too many. In this exercise, you're going to explore the many usages – or pitfalls of the .iloc indexer. This is something that will likely trip you up on your Python adventure, so it's good to know up front what you'll be up against.

Specifically, in this exercise, you'll learn to use .iloc in three slightly different ways that each return drastically different results.

Este ejercicio forma parte del curso

Python for MATLAB Users

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Access first row and first column
iloc_1 = animals.____[____,____]
print(iloc_1)
print(type(iloc_1))
Editar y ejecutar código