Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Challenge: Automating Stock Control | Section
Python Basics for Data Analysis
Seção 1. Capítulo 31
single

single

bookChallenge: Automating Stock Control

Deslize para mostrar o menu

You are managing the inventory for a grocery store, and your task is to ensure that the stock for each product is properly maintained and restocked when necessary.

If an item's stock level falls below the minimum required amount, it needs to be restocked.

Additionally, if the stock level of an item exceeds a certain threshold, a discount is applied, and the item is marked as "on sale."

Tarefa

Swipe to start coding

Manage grocery store inventory by restocking items using a while loop and applying discounts based on stock levels. You will use loops to update each item's status, but only print a simple processing message for each item and a final summary.

Rules

  1. Use a for loop to go through each item in the inventory dictionary.
    • For each item, get its current stock, minimum required stock, restock quantity, and sale status.
  2. Use a while loop to restock the item until its stock is at or above the minimum.
    • Increase the stock by the restock quantity on each iteration.
    • Update the stock value in the dictionary after restocking.
  3. After restocking, if the stock exceeds discount_threshold and the item is not on sale, set its sale status to True in the dictionary.

Output Requirements

  • Before the loop starts, print a line containing the word Processing (for example: Processing started).
  • For each item, print a single line: Processing [item name] (for example: Processing Bread).
  • After all items are processed, print a summary line containing the word Processing (for example: Processing completed).

Do not print details about restocking or discount application. Do not print a final inventory report. Only print the required processing lines.

Solução

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 31
single

single

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

some-alt