From 98de01eaf24a7e9d7e809ee917872ea650fca89a Mon Sep 17 00:00:00 2001 From: Vildan Pirpiroglu Date: Sun, 21 Jun 2026 23:07:06 +0200 Subject: [PATCH 1/2] Solved lab --- ...lab-python-error-handling-checkpoint.ipynb | 98 ++++++++++ lab-python-error-handling.ipynb | 178 +++++++++++++++++- 2 files changed, 275 insertions(+), 1 deletion(-) create mode 100644 .ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb diff --git a/.ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb b/.ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb new file mode 100644 index 0000000..f4c6ef6 --- /dev/null +++ b/.ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb @@ -0,0 +1,98 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "25d7736c-ba17-4aff-b6bb-66eba20fbf4e", + "metadata": {}, + "source": [ + "# Lab | Error Handling" + ] + }, + { + "cell_type": "markdown", + "id": "bc99b386-7508-47a0-bcdb-d969deaf6c8b", + "metadata": {}, + "source": [ + "## Exercise: Error Handling for Managing Customer Orders\n", + "\n", + "The implementation of your code for managing customer orders assumes that the user will always enter a valid input. \n", + "\n", + "For example, we could modify the `initialize_inventory` function to include error handling.\n", + " - If the user enters an invalid quantity (e.g., a negative value or a non-numeric value), display an error message and ask them to re-enter the quantity for that product.\n", + " - Use a try-except block to handle the error and continue prompting the user until a valid quantity is entered.\n", + "\n", + "```python\n", + "# Step 1: Define the function for initializing the inventory with error handling\n", + "def initialize_inventory(products):\n", + " inventory = {}\n", + " for product in products:\n", + " valid_quantity = False\n", + " while not valid_quantity:\n", + " try:\n", + " quantity = int(input(f\"Enter the quantity of {product}s available: \"))\n", + " if quantity < 0:\n", + " raise ValueError(\"Invalid quantity! Please enter a non-negative value.\")\n", + " valid_quantity = True\n", + " except ValueError as error:\n", + " print(f\"Error: {error}\")\n", + " inventory[product] = quantity\n", + " return inventory\n", + "\n", + "# Or, in another way:\n", + "\n", + "def initialize_inventory(products):\n", + " inventory = {}\n", + " for product in products:\n", + " valid_input = False\n", + " while not valid_input:\n", + " try:\n", + " quantity = int(input(f\"Enter the quantity of {product}s available: \"))\n", + " if quantity >= 0:\n", + " inventory[product] = quantity\n", + " valid_input = True\n", + " else:\n", + " print(\"Quantity cannot be negative. Please enter a valid quantity.\")\n", + " except ValueError:\n", + " print(\"Invalid input. Please enter a valid quantity.\")\n", + " return inventory\n", + "```\n", + "\n", + "Let's enhance your code by implementing error handling to handle invalid inputs.\n", + "\n", + "Follow the steps below to complete the exercise:\n", + "\n", + "2. Modify the `calculate_total_price` function to include error handling.\n", + " - If the user enters an invalid price (e.g., a negative value or a non-numeric value), display an error message and ask them to re-enter the price for that product.\n", + " - Use a try-except block to handle the error and continue prompting the user until a valid price is entered.\n", + "\n", + "3. Modify the `get_customer_orders` function to include error handling.\n", + " - If the user enters an invalid number of orders (e.g., a negative value or a non-numeric value), display an error message and ask them to re-enter the number of orders.\n", + " - If the user enters an invalid product name (e.g., a product name that is not in the inventory), or that doesn't have stock available, display an error message and ask them to re-enter the product name. *Hint: you will need to pass inventory as a parameter*\n", + " - Use a try-except block to handle the error and continue prompting the user until a valid product name is entered.\n", + "\n", + "4. Test your code by running the program and deliberately entering invalid quantities and product names. Make sure the error handling mechanism works as expected.\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/lab-python-error-handling.ipynb b/lab-python-error-handling.ipynb index f4c6ef6..44e372e 100644 --- a/lab-python-error-handling.ipynb +++ b/lab-python-error-handling.ipynb @@ -72,6 +72,182 @@ "\n", "4. Test your code by running the program and deliberately entering invalid quantities and product names. Make sure the error handling mechanism works as expected.\n" ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "45e5bcda-221d-4ebb-ab6f-ec01f01322cd", + "metadata": {}, + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter the quantity of t-shirts available: 4\n", + "Enter the quantity of mugs available: 3\n", + "Enter the quantity of hats available: 5\n", + "Enter the quantity of books available: 5\n", + "Enter the quantity of keychains available: 5\n", + "Enter the number of customer orders: mug\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Invalid input. Please enter a valid number.\n" + ] + }, + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter the number of customer orders: hat\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Invalid input. Please enter a valid number.\n" + ] + }, + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter the number of customer orders: keychain\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Invalid input. Please enter a valid number.\n" + ] + }, + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter the number of customer orders: 4\n", + "Enter the name of a product that a customer wants to order: book\n", + "Enter the name of a product that a customer wants to order: t-shirt\n", + "Enter the name of a product that a customer wants to order: hat\n" + ] + } + ], + "source": [ + "# 1. Envanter Kurulumu (Örnekte verilen kod)\n", + "def initialize_inventory(products):\n", + " inventory = {}\n", + " for product in products:\n", + " valid_input = False\n", + " while not valid_input:\n", + " try:\n", + " quantity = int(input(f\"Enter the quantity of {product}s available: \"))\n", + " if quantity >= 0:\n", + " inventory[product] = quantity\n", + " valid_input = True\n", + " else:\n", + " print(\"Quantity cannot be negative. Please enter a valid quantity.\")\n", + " except ValueError:\n", + " print(\"Invalid input. Please enter a valid number.\")\n", + " return inventory\n", + "\n", + "# 2. Siparişleri Alma (Senden istenen 1. yer)\n", + "def get_customer_orders(inventory):\n", + " valid_num = False\n", + " while not valid_num:\n", + " try:\n", + " num_orders = int(input(\"Enter the number of customer orders: \"))\n", + " if num_orders >= 0:\n", + " valid_num = True\n", + " else:\n", + " print(\"Number of orders cannot be negative.\")\n", + " except ValueError:\n", + " print(\"Invalid input. Please enter a valid number.\")\n", + "\n", + " customer_orders = set()\n", + " for _ in range(num_orders):\n", + " valid_product = False\n", + " while not valid_product:\n", + " product = input(\"Enter the name of a product that a customer wants to order: \")\n", + " if product not in inventory:\n", + " print(f\"Error: {product} is not in the inventory. Please try again.\")\n", + " elif inventory[product] <= 0:\n", + " print(f\"Error: {product} is out of stock. Please try again.\")\n", + " else:\n", + " customer_orders.add(product)\n", + " valid_product = True\n", + " return customer_orders\n", + "\n", + "# 3. Toplam Fiyat Hesaplama (Senden istenen 2. yer)\n", + "def calculate_total_price(customer_orders):\n", + " total_price = 0\n", + " for product in customer_orders:\n", + " valid_price = False\n", + " while not valid_price:\n", + " try:\n", + " price = float(input(f\"Enter the price of {product}: \"))\n", + " if price >= 0:\n", + " total_price += price\n", + " valid_price = True\n", + " else:\n", + " print(\"Price cannot be negative. Please enter a valid price.\")\n", + " except ValueError:\n", + " print(\"Invalid input. Please enter a valid numeric price.\")\n", + " return total_price\n", + "\n", + "# Diğer Yardımcı Fonksiyonlar (Aynı kalıyor)\n", + "def update_inventory(customer_orders, inventory):\n", + " for product in customer_orders:\n", + " if product in inventory:\n", + " inventory[product] -= 1\n", + " # Stoğu 0 olanları listeden çıkar\n", + " inventory = {product: quantity for product, quantity in inventory.items() if quantity > 0}\n", + " return inventory\n", + "\n", + "def calculate_order_statistics(customer_orders, products):\n", + " total_products_ordered = len(customer_orders)\n", + " percentage_ordered = (total_products_ordered / len(products)) * 100\n", + " return total_products_ordered, percentage_ordered\n", + "\n", + "def print_order_statistics(order_statistics):\n", + " total_products_ordered, percentage_ordered = order_statistics\n", + " print(\"Order Statistics:\")\n", + " print(f\"Total Products Ordered: {total_products_ordered}\")\n", + " print(f\"Percentage of Unique Products Ordered: {percentage_ordered:.1f}%\")\n", + "\n", + "def print_updated_inventory(inventory):\n", + " print(\"Updated Inventory:\")\n", + " for product, quantity in inventory.items():\n", + " print(f\"{product}: {quantity}\")\n", + "\n", + "# Ana Program Akışı\n", + "products = [\"t-shirt\", \"mug\", \"hat\", \"book\", \"keychain\"]\n", + "\n", + "inventory = initialize_inventory(products)\n", + "# Artık inventory'yi parametre olarak gönderiyoruz:\n", + "customer_orders = get_customer_orders(inventory) \n", + "\n", + "order_statistics = calculate_order_statistics(customer_orders, products)\n", + "print_order_statistics(order_statistics)\n", + "\n", + "inventory = update_inventory(customer_orders, inventory)\n", + "print_updated_inventory(inventory)\n", + "\n", + "total_price = calculate_total_price(customer_orders)\n", + "print(f\"Total Price: {total_price}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f3f85921-19dd-4bf0-96ec-7c62c40454e8", + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -90,7 +266,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.13" + "version": "3.12.9" } }, "nbformat": 4, From e0e1fbfa1e9dcd5c2cd0a81941c394692e72cf05 Mon Sep 17 00:00:00 2001 From: Vildan Pirpiroglu Date: Fri, 21 Aug 2026 16:42:05 +0200 Subject: [PATCH 2/2] Translate solution and remove generated files --- .gitignore | 4 + ...lab-python-error-handling-checkpoint.ipynb | 98 ------------------- lab-python-error-handling.ipynb | 74 ++------------ 3 files changed, 12 insertions(+), 164 deletions(-) create mode 100644 .gitignore delete mode 100644 .ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..59c1366 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +.ipynb_checkpoints/ +__pycache__/ +data.pkl diff --git a/.ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb b/.ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb deleted file mode 100644 index f4c6ef6..0000000 --- a/.ipynb_checkpoints/lab-python-error-handling-checkpoint.ipynb +++ /dev/null @@ -1,98 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "25d7736c-ba17-4aff-b6bb-66eba20fbf4e", - "metadata": {}, - "source": [ - "# Lab | Error Handling" - ] - }, - { - "cell_type": "markdown", - "id": "bc99b386-7508-47a0-bcdb-d969deaf6c8b", - "metadata": {}, - "source": [ - "## Exercise: Error Handling for Managing Customer Orders\n", - "\n", - "The implementation of your code for managing customer orders assumes that the user will always enter a valid input. \n", - "\n", - "For example, we could modify the `initialize_inventory` function to include error handling.\n", - " - If the user enters an invalid quantity (e.g., a negative value or a non-numeric value), display an error message and ask them to re-enter the quantity for that product.\n", - " - Use a try-except block to handle the error and continue prompting the user until a valid quantity is entered.\n", - "\n", - "```python\n", - "# Step 1: Define the function for initializing the inventory with error handling\n", - "def initialize_inventory(products):\n", - " inventory = {}\n", - " for product in products:\n", - " valid_quantity = False\n", - " while not valid_quantity:\n", - " try:\n", - " quantity = int(input(f\"Enter the quantity of {product}s available: \"))\n", - " if quantity < 0:\n", - " raise ValueError(\"Invalid quantity! Please enter a non-negative value.\")\n", - " valid_quantity = True\n", - " except ValueError as error:\n", - " print(f\"Error: {error}\")\n", - " inventory[product] = quantity\n", - " return inventory\n", - "\n", - "# Or, in another way:\n", - "\n", - "def initialize_inventory(products):\n", - " inventory = {}\n", - " for product in products:\n", - " valid_input = False\n", - " while not valid_input:\n", - " try:\n", - " quantity = int(input(f\"Enter the quantity of {product}s available: \"))\n", - " if quantity >= 0:\n", - " inventory[product] = quantity\n", - " valid_input = True\n", - " else:\n", - " print(\"Quantity cannot be negative. Please enter a valid quantity.\")\n", - " except ValueError:\n", - " print(\"Invalid input. Please enter a valid quantity.\")\n", - " return inventory\n", - "```\n", - "\n", - "Let's enhance your code by implementing error handling to handle invalid inputs.\n", - "\n", - "Follow the steps below to complete the exercise:\n", - "\n", - "2. Modify the `calculate_total_price` function to include error handling.\n", - " - If the user enters an invalid price (e.g., a negative value or a non-numeric value), display an error message and ask them to re-enter the price for that product.\n", - " - Use a try-except block to handle the error and continue prompting the user until a valid price is entered.\n", - "\n", - "3. Modify the `get_customer_orders` function to include error handling.\n", - " - If the user enters an invalid number of orders (e.g., a negative value or a non-numeric value), display an error message and ask them to re-enter the number of orders.\n", - " - If the user enters an invalid product name (e.g., a product name that is not in the inventory), or that doesn't have stock available, display an error message and ask them to re-enter the product name. *Hint: you will need to pass inventory as a parameter*\n", - " - Use a try-except block to handle the error and continue prompting the user until a valid product name is entered.\n", - "\n", - "4. Test your code by running the program and deliberately entering invalid quantities and product names. Make sure the error handling mechanism works as expected.\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.13" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/lab-python-error-handling.ipynb b/lab-python-error-handling.ipynb index 44e372e..0640e21 100644 --- a/lab-python-error-handling.ipynb +++ b/lab-python-error-handling.ipynb @@ -78,67 +78,9 @@ "execution_count": null, "id": "45e5bcda-221d-4ebb-ab6f-ec01f01322cd", "metadata": {}, - "outputs": [ - { - "name": "stdin", - "output_type": "stream", - "text": [ - "Enter the quantity of t-shirts available: 4\n", - "Enter the quantity of mugs available: 3\n", - "Enter the quantity of hats available: 5\n", - "Enter the quantity of books available: 5\n", - "Enter the quantity of keychains available: 5\n", - "Enter the number of customer orders: mug\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Invalid input. Please enter a valid number.\n" - ] - }, - { - "name": "stdin", - "output_type": "stream", - "text": [ - "Enter the number of customer orders: hat\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Invalid input. Please enter a valid number.\n" - ] - }, - { - "name": "stdin", - "output_type": "stream", - "text": [ - "Enter the number of customer orders: keychain\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Invalid input. Please enter a valid number.\n" - ] - }, - { - "name": "stdin", - "output_type": "stream", - "text": [ - "Enter the number of customer orders: 4\n", - "Enter the name of a product that a customer wants to order: book\n", - "Enter the name of a product that a customer wants to order: t-shirt\n", - "Enter the name of a product that a customer wants to order: hat\n" - ] - } - ], + "outputs": [], "source": [ - "# 1. Envanter Kurulumu (Örnekte verilen kod)\n", + "# 1. Initialize inventory with validation\n", "def initialize_inventory(products):\n", " inventory = {}\n", " for product in products:\n", @@ -155,7 +97,7 @@ " print(\"Invalid input. Please enter a valid number.\")\n", " return inventory\n", "\n", - "# 2. Siparişleri Alma (Senden istenen 1. yer)\n", + "# 2. Collect and validate customer orders\n", "def get_customer_orders(inventory):\n", " valid_num = False\n", " while not valid_num:\n", @@ -182,7 +124,7 @@ " valid_product = True\n", " return customer_orders\n", "\n", - "# 3. Toplam Fiyat Hesaplama (Senden istenen 2. yer)\n", + "# 3. Calculate total price with validation\n", "def calculate_total_price(customer_orders):\n", " total_price = 0\n", " for product in customer_orders:\n", @@ -199,12 +141,12 @@ " print(\"Invalid input. Please enter a valid numeric price.\")\n", " return total_price\n", "\n", - "# Diğer Yardımcı Fonksiyonlar (Aynı kalıyor)\n", + "# Supporting functions\n", "def update_inventory(customer_orders, inventory):\n", " for product in customer_orders:\n", " if product in inventory:\n", " inventory[product] -= 1\n", - " # Stoğu 0 olanları listeden çıkar\n", + " # Remove out-of-stock products\n", " inventory = {product: quantity for product, quantity in inventory.items() if quantity > 0}\n", " return inventory\n", "\n", @@ -224,11 +166,11 @@ " for product, quantity in inventory.items():\n", " print(f\"{product}: {quantity}\")\n", "\n", - "# Ana Program Akışı\n", + "# Main program flow\n", "products = [\"t-shirt\", \"mug\", \"hat\", \"book\", \"keychain\"]\n", "\n", "inventory = initialize_inventory(products)\n", - "# Artık inventory'yi parametre olarak gönderiyoruz:\n", + "# Pass the validated inventory to the order function:\n", "customer_orders = get_customer_orders(inventory) \n", "\n", "order_statistics = calculate_order_statistics(customer_orders, products)\n",