🎉 I'm releasing 12 products in 12 months! If you love product, checkout my new blog workingoutloud.dev

Back to home

Python Exceptions

    The base example is to use a try/except block. You can raise exceptions in code that can be caught by the except block.

    try: linux_interaction() except: print('Linux function was not executed')

    Example case

    class LinkedList: def __init__(self, head=None): self.head = head def getFirst(self): if self.head == None: raise Exception("No items in list") else: return self.head try: ll = LinkedList() ll.getFirst() except Exception, error: print(error)

    Personal image

    Dennis O'Keeffe

    @dennisokeeffe92
    • Melbourne, Australia

    Hi, I am a professional Software Engineer. Formerly of Culture Amp, UsabilityHub, Present Company and NightGuru.
    I am currently working on Visibuild.

    1,200+ PEOPLE ALREADY JOINED ❤️️

    Get fresh posts + news direct to your inbox.

    No spam. We only send you relevant content.

    Python Exceptions

    Introduction

    Share this post