CommencezCommencez gratuitement

Two methods for selecting columns

Once again, we've loaded the credit card records of our four suspects into a DataFrame called credit_records. Let's examine the items that they've purchased.

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

Cette activité fait partie du cours

Introduction to Data Science in Python

Voir le cours

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

# Select the column item from credit_records
# Use brackets and string notation
items = ____

# Display the results
print(items)
Modifier et exécuter le code