Showing posts with label Python error handling. Show all posts
Showing posts with label Python error handling. Show all posts

Monday, March 16, 2026

Lesson 18: Python Error Handling, Exceptions, and Debugging | Coding Class Series

March 16, 2026 0

 


Lesson 18: Python Error Handling, Exceptions, and Debugging | Coding Class Series

Introduction

Welcome to Lesson 18!
In this lesson, we will learn about handling errors in Python, using exceptions, and debugging techniques.
Error handling ensures that your program does not crash unexpectedly and behaves predictably.


1. Common Errors in Python

  • SyntaxError – Mistake in code structure
  • NameError – Using a variable before defining it
  • TypeError – Using incompatible data types
  • ValueError – Wrong type of value for a function
  • ZeroDivisionError – Dividing a number by zero

Example:

# SyntaxError example
# print("Hello World"

# NameError example
# print(x)

2. Handling Exceptions with try-except

try:
    num = int(input("Enter a number: "))
    result = 10 / num
    print("Result:", result)
except ZeroDivisionError:
    print("Error: Cannot divide by zero!")
except ValueError:
    print("Error: Invalid input! Enter a number.")

3. Using else and finally

try:
    num = int(input("Enter a number: "))
    result = 10 / num
except Exception as e:
    print("Error occurred:", e)
else:
    print("Division successful! Result is", result)
finally:
    print("This block always executes")

4. Raising Custom Exceptions

def check_age(age):
    if age < 18:
        raise ValueError("Age must be at least 18")
    else:
        print("Access granted")

try:
    check_age(15)
except ValueError as e:
    print("Error:", e)

5. Debugging Techniques

  • Use print statements to check variable values
  • Use Python debugger (pdb) for step-by-step execution:
import pdb

def add(a, b):
    pdb.set_trace()
    return a + b

result = add(5, "10")  # This will raise TypeError
print(result)
  • Use IDE debugging tools (VS Code, PyCharm)

6. Practice Exercises

  1. Write a program that divides two numbers and handles all possible exceptions.
  2. Create a function to calculate square root, raise a custom exception if the number is negative.
  3. Debug a program that adds a string to a number and fix it using try-except.
  4. Use finally to close a file after reading its contents, even if an error occurs.


Lesson 12: Python Exception Handling and Debugging | Coding Class Series

March 16, 2026 0



Lesson 12: Python Exception Handling and Debugging | Coding Class Series

Introduction

Welcome to Lesson 12!
In this lesson, we will learn how to handle errors in Python using exceptions and use debugging techniques to make our programs more robust and error-free. Exception handling ensures that your program does not crash unexpectedly.


1. What is an Exception?

An exception is an error that occurs during program execution.
Examples: ZeroDivisionError, FileNotFoundError, ValueError.

# Example: Division by zero
a = 10
b = 0
print(a / b)  # This will cause ZeroDivisionError

2. Using try and except

The try block contains code that might raise an exception.
The except block handles the exception gracefully.

try:
    a = 10
    b = 0
    result = a / b
except ZeroDivisionError:
    print("Error: Cannot divide by zero!")

3. Handling Multiple Exceptions

You can catch multiple types of exceptions:

try:
    num = int(input("Enter a number: "))
    result = 10 / num
except ZeroDivisionError:
    print("Error: Division by zero!")
except ValueError:
    print("Error: Invalid input, not a number!")

4. Using else and finally

  • else → Executes if no exception occurs
  • finally → Executes always, even if an exception occurs
try:
    file = open("example.txt", "r")
except FileNotFoundError:
    print("File not found!")
else:
    print(file.read())
finally:
    print("Execution finished.")

5. Raising Exceptions

You can raise your own exceptions using raise:

age = int(input("Enter your age: "))
if age < 18:
    raise ValueError("You must be 18 or older to proceed.")

6. Debugging Techniques

  1. Print statements – Track variable values and flow.
  2. Using IDE debugger – Step through code line by line.
  3. Logging module – Log errors for later analysis.
import logging

logging.basicConfig(filename="app.log", level=logging.ERROR)

try:
    x = 10 / 0
except ZeroDivisionError as e:
    logging.error("An error occurred: %s", e)

7. Practice Exercises

  1. Write a program that asks for two numbers and divides them. Handle ZeroDivisionError and ValueError.
  2. Open a file safely using try-except-else-finally.
  3. Raise a custom exception if a user enters a negative number.
  4. Implement logging to record all exceptions in your program.


Lesson 8: File Handling and Exception Handling | Coding Class Series

March 16, 2026 0



Lesson 8: File Handling and Exception Handling | Coding Class Series

Introduction

Welcome to Lesson 8!
In this lesson, we will learn about file handling in Python and how to manage errors using exception handling. These skills are essential to make your programs robust and data-driven.


1. File Handling

File handling allows your program to read from and write to files on your computer.

Opening a file:

file = open("example.txt", "w")  # 'w' mode to write
file.write("Hello, Python!")
file.close()

Reading a file:

file = open("example.txt", "r")  # 'r' mode to read
content = file.read()
print(content)  # Output: Hello, Python!
file.close()

Using with statement (recommended):

with open("example.txt", "r") as file:
    content = file.read()
    print(content)

File Modes:

  • r → read
  • w → write (overwrite)
  • a → append
  • rb / wb → read/write binary

2. Exception Handling

Exceptions occur when your program runs into an error.
Python allows you to handle exceptions gracefully using try, except, finally blocks.

Example:

try:
    num = int(input("Enter a number: "))
    print(10 / num)
except ZeroDivisionError:
    print("Cannot divide by zero!")
except ValueError:
    print("Invalid input! Enter a number.")
finally:
    print("Execution completed.")

Key Points:

  • try: Block where error might occur
  • except: Handles specific errors
  • finally: Executes always, even if an error occurs

3. Combining File Handling and Exceptions

You can handle file errors with exception handling:

try:
    with open("data.txt", "r") as file:
        print(file.read())
except FileNotFoundError:
    print("File not found. Please check the file name!")

Benefits:

  • Prevents program crashes
  • Provides useful error messages
  • Improves program reliability

4. Practice Exercises

  1. Create a file notes.txt and write 5 lines of text in it.
  2. Read the file and count the number of words.
  3. Write a program that asks the user for a filename and prints its content. Handle errors if the file does not exist.
  4. Create a program that divides two numbers and handles division by zero and invalid input using exception handling.