Get startedGet started for free

Inspecting a DataFrame

We've loaded the credit card records of our four suspects into a DataFrame called credit_records. Let's learn more about the structure of this DataFrame.

The pandas module has been imported under the alias pd. The DataFrame credit_records has already been imported.


How many rows are in credit_records?

This exercise is part of the course

Introduction to Data Science in Python

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Use .info() to inspect the DataFrame credit_records
print(____)
Edit and Run Code