AI Computer Institute
Expert-curated CS & AI curriculum aligned to CBSE standards. A bharath.ai initiative. About Us

Python Error Handling: Writing Robust Code

📚 Programming⏱️ 23 min read🎓 Grade 8
✍️ AI Computer Institute Editorial Team Published: March 2026 CBSE-aligned · Peer-reviewed · 23 min read
Content curated by subject matter experts with IIT/NIT backgrounds. All chapters are fact-checked against official CBSE/NCERT syllabi.

Python Error Handling: Writing Robust Code

A program that works perfectly on your laptop can crash the first time a real user touches it. A user types "twelve" instead of "12." The internet goes down mid-download. A file is accidentally deleted. The temperature sensor returns "NaN" because a wire wiggled. Real software has to survive these situations without exploding. This is what error handling is for: writing code that anticipates what can go wrong, handles it gracefully, and either recovers or fails in a clean, informative way. For a Grade 8 student learning Python, error handling is the single biggest difference between code that works in a tutorial and code that works in the real world. This chapter teaches the try-except pattern, shows you the most common exceptions, and builds up to writing your own custom errors and logging them properly.

1. What Is an Exception?

An exception is Python's way of saying "something unexpected happened and I cannot continue normally." When Python hits an exception, it stops running the current code and looks for someone who knows how to handle the situation. If no one does, the program crashes with a traceback.

>>> 10 / 0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ZeroDivisionError: division by zero

>>> int("hello")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: 'hello'

2. The Most Common Python Exceptions

ExceptionWhen It Happens
ZeroDivisionErrorYou divided by zero
ValueErrorThe value has the right type but wrong content, like int("cat")
TypeErrorYou used the wrong type, like "5" + 3
IndexErrorYou asked for list[10] but the list has only 5 items
KeyErrorYou asked for a dictionary key that does not exist
FileNotFoundErrorYou tried to open a file that is not there
PermissionErrorYou tried to read or write a file you are not allowed to
ImportErrorThe module you tried to import could not be found
AttributeErrorYou asked an object for an attribute or method it does not have

3. The try-except Block

The basic pattern for handling an exception in Python:

try:
    # code that might raise an exception
    age = int(input("Enter your age: "))
    print("You are " + str(age) + " years old.")
except ValueError:
    print("That was not a valid number. Please try again.")

If the user enters "12," the int() call succeeds and the message prints. If they enter "twelve," int() raises ValueError and Python jumps to the except block, which prints a friendly message and continues. Either way, the program does not crash.

4. Handling Several Exceptions

Sometimes the same block of code can fail in several ways. You can handle each case separately:

try:
    filename = input("Which file should I read? ")
    with open(filename) as f:
        text = f.read()
    number = int(text)
    result = 100 / number
    print("Result:", result)
except FileNotFoundError:
    print("I could not find that file.")
except ValueError:
    print("The file did not contain a number.")
except ZeroDivisionError:
    print("The file contained zero, cannot divide by zero.")

Python checks the except blocks top to bottom and runs the first one that matches. Order them from most specific to least specific.

5. Catching the Exception Object

You can capture the actual exception object to inspect or log it:

try:
    age = int(input("Enter your age: "))
except ValueError as error:
    print("Something went wrong:", error)

The variable "error" holds a ValueError object. Printing it gives a short explanation of what happened. This is useful for logging real problems instead of generic messages.

6. The else and finally Clauses

A complete try statement has up to four sections. All except the first are optional.

try:
    # code that might raise
    data = read_sensor()
except SensorError as e:
    # ran only if an exception happened
    print("Sensor failed:", e)
else:
    # ran only if no exception happened
    print("Sensor reading:", data)
finally:
    # ALWAYS runs, exception or not
    close_sensor()

The "finally" block is especially useful for cleanup like closing files, releasing network connections, or turning off hardware. Whatever happens in try or except, finally runs last.

7. Raising Your Own Exceptions

Sometimes your code detects a problem that should stop the caller. Use "raise" to create an exception.

def set_temperature(celsius):
    if celsius < -273.15:
        raise ValueError("Temperature cannot be below absolute zero.")
    if celsius > 10000:
        raise ValueError("Temperature is physically unreasonable.")
    print("Setting temperature to", celsius, "C")

try:
    set_temperature(-500)
except ValueError as e:
    print("Bad request:", e)

8. Creating Custom Exception Classes

For larger programs you can define your own exception classes, which makes your error messages and handling more specific.

class InvalidAgeError(Exception):
    pass

def register_student(age):
    if age < 5 or age > 25:
        raise InvalidAgeError("Age " + str(age) + " is outside school range.")
    print("Student registered at age", age)

try:
    register_student(45)
except InvalidAgeError as e:
    print("Registration failed:", e)
When to raise vs. when to return False: Raise an exception when the situation is exceptional — it should not happen in normal use. Return False or None when it is a normal outcome the caller should deal with. For example, "divide by zero" is exceptional, while "search term not found" is a normal outcome.

9. The Bare except Anti-Pattern

You can write "except:" with no exception type, catching everything. Almost always, this is a bad idea. It hides bugs, catches keyboard interrupts you didn't mean to catch, and makes debugging harder.

# BAD
try:
    do_stuff()
except:
    pass    # swallows every error silently

# GOOD
try:
    do_stuff()
except (ValueError, FileNotFoundError) as e:
    log_error(e)
    # handle specifically or re-raise

10. A Robust Mini-Program

Let's put it all together. This program reads marks from a file and prints a class average, surviving messy data:

def read_marks(filename):
    marks = []
    try:
        f = open(filename)
    except FileNotFoundError:
        print("File not found:", filename)
        return marks

    try:
        for line_number, line in enumerate(f, start=1):
            line = line.strip()
            if not line:
                continue
            try:
                mark = int(line)
                if 0 <= mark <= 100:
                    marks.append(mark)
                else:
                    print("Line", line_number, "out of range:", mark)
            except ValueError:
                print("Line", line_number, "not a number:", line)
    finally:
        f.close()

    return marks

data = read_marks("marks.txt")
if data:
    print("Average:", sum(data) / len(data))
else:
    print("No valid marks found.")

Notice how the program survives: a missing file, blank lines, non-numeric lines, out-of-range numbers, and an empty result. It never crashes.

Coding Challenge: Write a function that reads a Python dictionary of student names and marks from a JSON file and returns the top 3 scorers. Handle: missing file, invalid JSON, a student whose mark is a string instead of a number, and the case where there are fewer than 3 students. List every exception you need to catch.

Key Takeaways

  • An exception is Python's way of signalling that something unexpected happened; unhandled exceptions crash your program.
  • The try-except block lets you catch specific exceptions and recover gracefully while keeping the program running.
  • The else clause runs when no exception happened; the finally clause always runs and is perfect for cleanup.
  • Use raise to generate your own exceptions when your code detects an exceptional situation; create custom exception classes for large programs.
  • Avoid bare except clauses — they hide bugs and make debugging harder; catch the specific exceptions you actually know how to handle.

From Concept to Reality: Python Error Handling: Writing Robust Code

In the professional world, the difference between a good engineer and a great one often comes down to understanding fundamentals deeply. Anyone can copy code from Stack Overflow. But when that code breaks at 2 AM and your application is down — affecting millions of users — only someone who truly understands the underlying concepts can diagnose and fix the problem.

Python Error Handling: Writing Robust Code is one of those fundamentals. Whether you end up working at Google, building your own startup, or applying CS to solve problems in agriculture, healthcare, or education, these concepts will be the foundation everything else is built on. Indian engineers are known globally for their strong fundamentals — this is why companies worldwide recruit from IITs, NITs, IIIT Hyderabad, and BITS Pilani. Let us make sure you have that same strong foundation.

Object-Oriented Programming: Modelling the Real World

OOP lets you model real-world entities as code "objects." Each object has properties (data) and methods (behaviour). Here is a practical example:

class BankAccount:
    """A simple bank account — like what SBI or HDFC uses internally"""

    def __init__(self, holder_name, initial_balance=0):
        self.holder = holder_name
        self.balance = initial_balance    # Private in practice
        self.transactions = []            # History log

    def deposit(self, amount):
        if amount <= 0:
            raise ValueError("Deposit must be positive")
        self.balance += amount
        self.transactions.append(f"+₹{amount}")
        return self.balance

    def withdraw(self, amount):
        if amount > self.balance:
            raise ValueError("Insufficient funds!")
        self.balance -= amount
        self.transactions.append(f"-₹{amount}")
        return self.balance

    def statement(self):
        print(f"
--- Account Statement: {self.holder} ---")
        for t in self.transactions:
            print(f"  {t}")
        print(f"  Balance: ₹{self.balance}")

# Usage
acc = BankAccount("Rahul Sharma", 5000)
acc.deposit(15000)      # Salary credited
acc.withdraw(2000)      # UPI payment to Swiggy
acc.withdraw(500)       # Metro card recharge
acc.statement()

This is encapsulation — bundling data and behaviour together. The user of BankAccount does not need to know HOW deposit works internally; they just call it. Inheritance lets you extend this: a SavingsAccount could inherit from BankAccount and add interest calculation. Polymorphism means different account types can respond to the same .withdraw() method differently (savings accounts might check minimum balance, current accounts might allow overdraft).

Did You Know?

🚀 ISRO is the world's 4th largest space agency, powered by Indian engineers. With a budget smaller than some Hollywood blockbusters, ISRO does things that cost 10x more for other countries. The Mangalyaan (Mars Orbiter Mission) proved India could reach Mars for the cost of a film. Chandrayaan-3 succeeded where others failed. This is efficiency and engineering brilliance that the world studies.

🏥 AI-powered healthcare diagnosis is being developed in India. Indian startups and research labs are building AI systems being tested for detecting conditions like cancer and retinopathy from medical images, with some studies showing promising early results (e.g., Google Health's 2020 Nature study on mammography screening). These systems are being deployed in rural clinics across India, bringing world-class healthcare to millions who otherwise could not afford it.

🌾 Agriculture technology is transforming Indian farming. Drones with computer vision scan crop health. IoT sensors in soil measure moisture and nutrients. AI models predict yields and optimal planting times. Companies like Ninjacart and SoilCompanion are using these technologies to help farmers access better market pricing through AI-driven platforms. This is computer science changing millions of lives in real-time.

💰 India has more coding experts per capita than most Western countries. India hosts platforms like CodeChef, which has over 15 million users worldwide. Indians dominate competitive programming rankings. Companies like Flipkart and Razorpay are building world-class engineering cultures. The talent is real, and if you stick with computer science, you will be part of this story.

Real-World System Design: Swiggy's Architecture

When you order food on Swiggy, here is what happens behind the scenes in about 2 seconds: your location is geocoded (algorithms), nearby restaurants are queried from a spatial index (data structures), menu prices are pulled from a database (SQL), delivery time is estimated using ML models trained on historical data (AI), the order is placed in a distributed message queue (Kafka), a delivery partner is assigned using a matching algorithm (optimization), and real-time tracking begins using WebSocket connections (networking). EVERY concept in your CS curriculum is being used simultaneously to deliver your biryani.

The Process: How Python Error Handling: Writing Robust Code Works in Production

In professional engineering, implementing python error handling: writing robust code requires a systematic approach that balances correctness, performance, and maintainability:

Step 1: Requirements Analysis and Design Trade-offs
Start with a clear specification: what does this system need to do? What are the performance requirements (latency, throughput)? What about reliability (how often can it fail)? What constraints exist (memory, disk, network)? Engineers create detailed design documents, often including complexity analysis (how does the system scale as data grows?).

Step 2: Architecture and System Design
Design the system architecture: what components exist? How do they communicate? Where are the critical paths? Use design patterns (proven solutions to common problems) to avoid reinventing the wheel. For distributed systems, consider: how do we handle failures? How do we ensure consistency across multiple servers? These questions determine the entire architecture.

Step 3: Implementation with Code Review and Testing
Write the code following the architecture. But here is the thing — it is not a solo activity. Other engineers read and critique the code (code review). They ask: is this maintainable? Are there subtle bugs? Can we optimize this? Meanwhile, automated tests verify every piece of functionality, from unit tests (testing individual functions) to integration tests (testing how components work together).

Step 4: Performance Optimization and Profiling
Measure where the system is slow. Use profilers (tools that measure where time is spent). Optimize the bottlenecks. Sometimes this means algorithmic improvements (choosing a smarter algorithm). Sometimes it means system-level improvements (using caching, adding more servers, optimizing database queries). Always profile before and after to prove the optimization worked.

Step 5: Deployment, Monitoring, and Iteration
Deploy gradually, not all at once. Run A/B tests (comparing two versions) to ensure the new system is better. Once live, monitor relentlessly: metrics dashboards, logs, traces. If issues arise, implement circuit breakers and graceful degradation (keeping the system partially functional rather than crashing completely). Then iterate — version 2.0 will be better than 1.0 based on lessons learned.


How the Web Request Cycle Works

Every time you visit a website, a precise sequence of events occurs. Here is the flow:

    You (Browser)          DNS Server          Web Server
        |                      |                    |
        |---[1] bharath.ai --->|                    |
        |                      |                    |
        |<--[2] IP: 76.76.21.9|                    |
        |                      |                    |
        |---[3] GET /index.html ----------------->  |
        |                      |                    |
        |                      |    [4] Server finds file,
        |                      |        runs server code,
        |                      |        prepares response
        |                      |                    |
        |<---[5] HTTP 200 OK + HTML + CSS + JS --- |
        |                      |                    |
   [6] Browser parses HTML                          |
       Loads CSS (styling)                          |
       Executes JS (interactivity)                  |
       Renders final page                           |

Step 1-2 is DNS resolution — converting a human-readable domain name to a machine-readable IP address. Step 3 is the HTTP request. Step 4 is server-side processing (this is where frameworks like Node.js, Django, or Flask operate). Step 5 is the HTTP response. Step 6 is client-side rendering (this is where React, Angular, or Vue operate).

In a real-world scenario, this cycle also involves CDNs (Content Delivery Networks), load balancers, caching layers, and potentially microservices. Indian companies like Jio use this exact architecture to serve 400+ million subscribers.

Real Story from India

The India Stack Revolution

In the early 1990s, India's economy was closed. Indians could not easily send money abroad or access international services. But starting in 1991, India opened its economy. Young engineers in Bangalore, Hyderabad, and Chennai saw this as an opportunity. They built software companies (Infosys, TCS, Wipro) that served the world.

Fast forward to 2008. India had a problem: 500 million Indians had no formal identity. No bank account, no passport, no way to access government services. The government decided: let us use technology to solve this. UIDAI (Unique Identification Authority of India) was created, and engineers designed Aadhaar.

Aadhaar collects fingerprints and iris scans from every Indian, stores them in massive databases using sophisticated encryption, and allows anyone (even a street vendor) to verify identity instantly. Today, 1.4 billion Indians have Aadhaar. On top of Aadhaar, engineers built UPI (digital payments), Jan Dhan (bank accounts), and ONDC (open e-commerce network).

This entire stack — Aadhaar, UPI, Jan Dhan, ONDC — is called the India Stack. It is considered the most advanced digital infrastructure in the world. Governments and companies everywhere are trying to copy it. And it was built by Indian engineers using computer science concepts that you are learning right now.

Production Engineering: Python Error Handling: Writing Robust Code at Scale

Understanding python error handling: writing robust code at an academic level is necessary but not sufficient. Let us examine how these concepts manifest in production environments where failure has real consequences.

Consider India's UPI system processing 10+ billion transactions monthly. The architecture must guarantee: atomicity (a transfer either completes fully or not at all — no half-transfers), consistency (balances always add up correctly across all banks), isolation (concurrent transactions on the same account do not interfere), and durability (once confirmed, a transaction survives any failure). These are the ACID properties, and violating any one of them in a payment system would cause financial chaos for millions of people.

At scale, you also face the thundering herd problem: what happens when a million users check their exam results at the same time? (CBSE result day, anyone?) Without rate limiting, connection pooling, caching, and graceful degradation, the system crashes. Good engineering means designing for the worst case while optimising for the common case. Companies like NPCI (the organisation behind UPI) invest heavily in load testing — simulating peak traffic to identify bottlenecks before they affect real users.

Monitoring and observability become critical at scale. You need metrics (how many requests per second? what is the 99th percentile latency?), logs (what happened when something went wrong?), and traces (how did a single request flow through 15 different microservices?). Tools like Prometheus, Grafana, ELK Stack, and Jaeger are standard in Indian tech companies. When Hotstar streams IPL to 50 million concurrent users, their engineering team watches these dashboards in real-time, ready to intervene if any metric goes anomalous.

The career implications are clear: engineers who understand both the theory (from chapters like this one) AND the practice (from building real systems) command the highest salaries and most interesting roles. India's top engineering talent earns ₹50-100+ LPA at companies like Google, Microsoft, and Goldman Sachs, or builds their own startups. The foundation starts here.

Checkpoint: Test Your Understanding 🎯

Before moving forward, ensure you can answer these:

Question 1: Summarize python error handling: writing robust code in 3-4 sentences. Include: what problem it solves, how it works at a high level, and one real-world application.

Answer: A strong summary should mention the core mechanism, not just the name. If you can explain it to someone who has never heard of it, you understand it.

Question 2: Walk through a concrete example of python error handling: writing robust code with actual data or numbers. Show each step of the process.

Answer: Use a small example (3-5 data points or a simple scenario) and trace through every step. This is how competitive exams test understanding.

Question 3: What are 2-3 limitations of python error handling: writing robust code? In what situations would you choose a different approach instead?

Answer: Every technique has weaknesses. Knowing when NOT to use something is as important as knowing how it works.

Key Vocabulary

Here are important terms from this chapter that you should know:

Class: A blueprint for creating objects with shared properties and methods
Object: An instance of a class with its own data and behaviour
Inheritance: When a new class inherits properties and methods from an existing class
Recursion: A function that calls itself to solve smaller sub-problems
Stack: A data structure where the last item added is the first removed (LIFO)

💡 Interview-Style Problem

Here is a problem that frequently appears in technical interviews at companies like Google, Amazon, and Flipkart: "Design a URL shortener like bit.ly. How would you generate unique short codes? How would you handle millions of redirects per second? What database would you use and why? How would you track click analytics?"

Think about: hash functions for generating short codes, read-heavy workload (99% redirects, 1% creates) suggesting caching, database choice (Redis for cache, PostgreSQL for persistence), and horizontal scaling with consistent hashing. Try sketching the system architecture on paper before looking up solutions. The ability to think through system design problems is the single most valuable skill for senior engineering roles.

Where This Takes You

The knowledge you have gained about python error handling: writing robust code is directly applicable to: competitive programming (Codeforces, CodeChef — India has the 2nd largest competitive programming community globally), open-source contribution (India is the 2nd largest contributor on GitHub), placement preparation (these concepts form 60% of technical interview questions), and building real products (every startup needs engineers who understand these fundamentals).

India's tech ecosystem offers incredible opportunities. Freshers at top companies earn ₹15-50 LPA; experienced engineers at FAANG companies in India earn ₹50-1 Cr+. But more importantly, the problems being solved in India — digital payments for 1.4 billion people, healthcare AI for rural areas, agricultural tech for 150 million farmers — are some of the most impactful engineering challenges in the world. The fundamentals you are building will be the tools you use to tackle them.

Crafted for Class 8–9 • Programming • Aligned with NEP 2020 & CBSE Curriculum

← Responsive Web Design — Building for Every ScreenGraphQL vs REST: Choosing the Right API Architecture →

Found this useful? Share it!

📱 WhatsApp 🐦 Twitter 💼 LinkedIn