Bernard Aybouts - Blog - Miltonmarketing.com

Approx. read time: 2.6 min.

Post: Exception Handling in Python programming

Exception Handling in Python programming : When programming, errors happen. It’s just the way it is. Perhaps the user gave bad input. Maybe a network resource was unavailable. Maybe the program ran out of memory. Or the programmer may have even made a mistake!

 

Python’s solution to errors is exceptions. You might have seen an exception before.

[python] print(a)

[/python]

The above code alone will yield the following exception in Python:


Traceback (most recent call last):
File “”, line 1, in
print (a)
NameError: name ‘a’ is not defined

Oh snap! We forgot to assign a value to the ‘a’ variable. But sometimes you don’t want exceptions to completely stop the program or even crash. You might want to do something special when an exception is raised. This is done in a try/except block.

As a great programmer you must try to make certain your program can handle user errors, or even detect errors. Usually, this is accomplished by PROPER beta testing yourself or with others.

Here’s a trivial example: Suppose you’re iterating over a list. You need to iterate over 20 numbers, but the list is made from user input, and might not have 20 numbers in it. After you reach the end of the list, you just want the rest of the numbers to be interpreted as a 0. Here’s how you could do that:

[python] def do_stuff_with_number(n):
print(n)

the_list = (1, 2, 3, 4, 5)

for i in range(20):
try:
do_stuff_with_number(the_list[i])
except IndexError: # Raised when accessing a non-existing index of a list
do_stuff_with_number(0)[/python]

Trinket.io on-line Python compiler

You can do that with any exception. For more details on handling exceptions, look no further than handling exceptions in Python here.

[python] # answer code. try exercise below.
actor = {"name": "John Cleese", "rank": "awesome"}

def get_last_name():
return actor["name"].split()[1]

get_last_name()
print("All exceptions caught! Good job!")
print("The actor’s last name is %s" % get_last_name())[/python]

Trinket.io on-line Python compiler


Related Videos:

Bernard Aybouts - Blog - Miltonmarketing.com

Related Links:

Methods of teaching programming

Introduction to JavaScript – Data Types

Learn about Numpy Arrays in Python programming

Build to-do list web-app with code

Introduction to JavaScript

My little pony learning game in VB.NET

Philips devs are coding algorithms that help detect cancer accurately

Learn Partial functions Python programming

Introduction to JavaScript – Variables

Understanding Floating point number representation

Introduction to JavaScript – Variables: Review

CSS, HTML, JAVASCRIPT, Online Compiler. Code on the go by replit.it

Google’s “Grasshopper” Mobile Game Teaches Adults How To Code In An Easy, Accessible Way — And It’s Free

How to make a go-back button with PHP code?

Hello World Android app built with Android Studio

Introduction to JavaScript – Control Flow: True and False values

Introduction to JavaScript – Create a Variable: let

FAQs

Adding Python Comments

What is Python?

Why do most sites use cookies?

Learn Code Introspection Python Programming

Introduction to JavaScript – CONSOLE

 

The Longevity Blueprint: AI-Powered Health Optimization

Current step:1AI-Human Medical Analyzer: Smarter, Personalized Health
2AI-Human Medical Analyzer: Smarter, Personalized Health

> SYS.HEALTH: AI-Human Medical Analyzer_

// Revolutionize Your Diagnostics

Experience the perfect blend of cutting-edge AI precision and expert human care. Our revolutionary analyzer turns your raw health data into personalized, actionable insights tailored just for you.

> INITIALIZING_BIOMETRIC_SCAN...

[+] DATA_INPUT

Securely upload complex health parameters, including lab bloodwork and comprehensive medical history.

[+] PROCESSING

Advanced algorithmic parsing combined with human-level oversight ensures hyper-accurate data interpretation.

[+] OUTPUT_MATRIX

Receive smarter, faster, and truly personalized care strategies to take immediate charge of your health journey.

A name/nickname is required to continue.

> TRANSLATION_MATRIX_ACTIVE...
[ LANG_EN ]
Knowledge Heals, Prevention Protects
[ LANG_HI ]
ज्ञान ठीक करता है, रोकथाम सुरक्षा करती है
[ LANG_ZH ]
知识治愈,预防保护
[ LANG_JA ]
知識は癒し、予防は守る
[ LANG_HE ]
הידע מרפא, המניעה מגנה
[ LANG_AR ]
المعرفة تُشفي، والوقاية تحمي
[ LANG_FR ]
La connaissance guérit, la prévention protège

> SYS.AUTH: Data Processing Consent_

[ AWAITING_AUTHORIZATION ] By providing consent, you allow us to process your uploaded data through our proprietary AI-Human analysis system.

  • [+] SECURE_REVIEW: This ensures your information is carefully reviewed using advanced AI technology and certified professional oversight to deliver personalized health insights.
  • [+] PRIVACY_LOCK: Your privacy is our strict priority. Your data will only be used for this specific diagnostic purpose.

> SYS.UPLOAD: Share Medical Records [OPTIONAL]_

[ USER_CONTROL_ACTIVE ] Uploading your medical records during registration is entirely optional. You can choose to bypass this step and provide data later if it suits your timeline.

You dictate the data flow: share as much or as little as you’re comfortable with, and let us guide you toward better health.

[+] FORMAT_SUPPORT

We accept all file formats, including photos, PDFs, text documents, and raw official medical data.

[+] DATA_YIELD

Increased inputs correlate with higher precision. The more info you share, the better we tailor your personalized insights.

> NEXT_STEPS: Post-Registration Protocol_

Once your registration is complete, a human specialist from our team will personally reach out to you within 3-10 business days. We will discuss your health journey and map out exactly how we can support you.

About the Author: Bernard Aybout (Virii8)

Avatar Of Bernard Aybout (Virii8)
I am a dedicated technology enthusiast with over 45 years of life experience, passionate about computers, AI, emerging technologies, and their real-world impact. As the founder of my personal blog, MiltonMarketing.com, I explore how AI, health tech, engineering, finance, and other advanced fields leverage innovation—not as a replacement for human expertise, but as a tool to enhance it. My focus is on bridging the gap between cutting-edge technology and practical applications, ensuring ethical, responsible, and transformative use across industries. MiltonMarketing.com is more than just a tech blog—it's a growing platform for expert insights. We welcome qualified writers and industry professionals from IT, AI, healthcare, engineering, HVAC, automotive, finance, and beyond to contribute their knowledge. If you have expertise to share in how AI and technology shape industries while complementing human skills, join us in driving meaningful conversations about the future of innovation. 🚀