ComenzarEmpieza gratis

Cross-selling products

The small grocery store has decided to cross-sell chewing gum with either coffee, cereal, or bread. To determine which of the three items is best to use, the store owner has performed an experiment. For one week, she sold chewing gum next to the register and recorded all transactions where it was purchased with either coffee, cereal, or bread. The transactions from that day are available as a list of lists named transactions. Each transaction is either ['coffee','gum'], ['cereal','gum'], or ['bread','gum'].

Este ejercicio forma parte del curso

Market Basket Analysis in Python

Ver curso

Instrucciones del ejercicio

  • Count the number of transactions that contain coffee and gum.
  • Count the number of transactions that contain cereal and gum.
  • Count the number of transactions that contain bread and gum.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Count the number of transactions with coffee and gum
coffee = transactions.count(['____', 'gum'])

# Count the number of transactions with cereal and gum
cereal = transactions.____(['cereal', 'gum'])

# Count the number of transactions with bread and gum
bread = transactions.____(['____', '____'])

# Print the counts for each transaction.
print('coffee:', coffee)
print('cereal:', cereal)
print('bread:', bread)
Editar y ejecutar código