Menu
Coddy logo textTech

Stok Durumunu Kontrol Et

Coddy'nin Python Journey'sinin Logic & Flow bölümünün bir parçası — ders 70 / 78.

challenge icon

Görev

Kolay

Bir argüman alan check_availability adında bir fonksiyon oluşturun: item (string). Fonksiyon şunları yapmalıdır:

  1. Öğenin inventory sözlüğünde mevcut olup olmadığını kontrol edin.
    • Eğer mevcut değilse, "Item not found" döndürün.
  2. Eğer öğe mevcutsa, öğenin mevcut stok miktarını döndürün.

Kodunuzun en altına aşağıdaki kod bloğunu ekleyin (veya mevcut olanla değiştirin):

add_item("Apple", 0.5, 100)
add_item("Banana", 0.2, 50)
update_stock("Apple", -20)
update_stock("Banana", 30)
print(check_availability("Apple"))  # Should return 80
print(check_availability("Banana"))  # Should return 80
print(check_availability("Orange"))  # Should return "Item not found"

Kendin dene

inventory = {}

def add_item(item, price, stock):
    if item in inventory:
        print(f"Error: Item '{item}' already exists.")
        return
    try:
        inventory[item] = {"price": float(price), "stock": int(stock)}
        print(f"Item '{item}' added successfully.")
    except ValueError:
        print("Error: Price and stock must be numeric.")

def update_stock(item, quantity):
    if item not in inventory:
        print(f"Error: Item '{item}' not found.")
        return
    try:
        new_stock = inventory[item]["stock"] + int(quantity)
        if new_stock < 0:
            print(f"Error: Insufficient stock for '{item}'.")
        else:
            inventory[item]["stock"] = new_stock
            print(f"Stock for '{item}' updated successfully.")
    except ValueError:
        print("Error: Quantity must be an integer.")


add_item("Apple", 0.5, 100)
add_item("Banana", 0.2, 50)
add_item("Apple", 0.6, 30)  # Should print an error
update_stock("Apple", -20)
update_stock("Banana", 30)
update_stock("Orange", 10)  # Should print an error
update_stock("Apple", -90)
print(inventory)  

Logic & Flow bölümündeki tüm dersler